Posts
 
Reputation
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
~299 People Reached
Favorite Forums
Favorite Tags
Member Avatar for gmadeira

Hi, folks. Need some help to develop a method/function. No problem if there is no code but I would like to start discussing the best way of doing this even in high level language. First of all would like to provide you with some information. The set that I use …

Member Avatar for gmadeira
0
102
Member Avatar for gmadeira

I'm using the following code to send an email: [CODE] Dim SendMessage As New Net.Mail.SmtpClient Dim userToken As New Object Dim EmailMessage As New MailMessage With EmailMessage .From = New MailAddress("username@gmail.com") .To.Add("username@xxx.com") .Subject = "Test" .Body = "test" End With AddHandler SendMessage.SendCompleted, AddressOf sendMail_SendCompleted With SendMessage .Host = "smtp.gmail.com" .Port …

0
49
Member Avatar for gmadeira

Hi folks. I'm having some problem here. I have a list of files to read and have to append them all to one unique file. the problem is that when i open the first file to read. I read the first line and discard it. when i read the second …

Member Avatar for gmadeira
0
148