No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Re: 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 … | |
Re: 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. | |
Re: [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 … | |
Re: 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"]; } |