spectrumdata
IS-IT--Management
I have a VFP9 dbf of jokes. I'd like a routine that I could add to my VFP scheduler and post 5 or 6 jokes to alt.jokes every night. That would be NNTP port 119, I think.
Thanks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
iMsg = CreateObject("CDO.Message")
With iMsg
.To = "someone@microsoft.com"
.Newsgroups = "comp.microsoft.newsgroup1"
.Subject = "Agenda for staff meeting"
.HTMLBody = "<html><body><p>Please plan to present your status for the following projects...</p></body></html>"
EndWith