Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #37.0K
Ranked #4K
~614 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for deepas

Hi Deepas, Just like you i have to call crystal reports from C#.NET from time to time. I'm not the great expert myself but I'll share my knowledge as much as i can: The way you describe your problem, it seems to me the problem is situated in the database …

Member Avatar for jerry32uk
0
263
Member Avatar for compovet

Hi there, Last time I mailed with C#-code, it happened like this: MailMessage mailMessage; SmtpClient client; mailMessage = new MailMessage(); client = new SmtpClient("relay.skynet.be"); //your mail-out server mailMessage.To.Add("...@hotmail.com"); mailMessage.Subject = "..."; client.Send(mailMessage); This was not in a web application but just a C#.NET windows application. I hope this helps you.

Member Avatar for LizR
0
116
Member Avatar for sfrider0

[QUOTE=sfrider0;737692]I have created a POP3 email client. I am having problems viewing the html and attachments in the message. Can somebody point me to a tutorial or a good site for this? I have googled it and found many ways to send an attachment, but right now I'm more interested …

Member Avatar for EastStreetEagle
0
106
Member Avatar for Gaurav arora

My first guess would be the CurrentCell property of the datagrid. For this property you have to know at whitch row you just entered the product code. This is an exemple within the CellValueChanged event of a datagrid: private void grdSearch_CellValueChanged(Object sender, DataGridViewCellEventArgs e) { grdSearch.CurrentCell = grdSearch.Rows[e.RowIndex].Cells["colProdId"]; }

Member Avatar for EastStreetEagle
0
129