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 #55.0K
2 Posted Topics
Re: Email Program
Hello You could try this piece of code: [code] Dim objEmail = CreateObject("CDO.Message") objEmail.From = "[email protected]" objEmail.To = "[email protected]" objEmail.Subject = "Hello!" 'you can add html into the textbody to make it a html message objEmail.Textbody = "Hello" & vbCrLf & "From Henry" objEmail.AddAttachment("C:\file.txt") objEmail.Send()[/code]
Hi I need to reference a .net .dll file at runtime of my program. Does anyone know the code to do it?
The End.
muzzy1000