Hello,
if you post the URL of your website
some users here in this forum can make
a sample to auto fill the website.
Main Topics
Browse All TopicsI want my VB6 program to tell my web site to send me an email.
I already have a form on my web site that generates an email when it is filled out and a button is clicked. Can my program access this form, tell it what to put in the textboxes, then press the button to send the email message?
Thanks!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thanks! Would you please explain in detail the use of line 5?
objHTTP.Get "http://yourwebsite/sendem
Is "vname.text" the name of the page containing the form (form.html for example)?
'This form needs a webbrowser control
'hit Project / Components / "Microsoft Internet Controls"
Const Quest = "Do you want to submit this form ?"
Private Sub Form_Activate()
myURL = "http://mysite.com/my.htm"
WebBrowser1.Navigate myURL
While WebBrowser1.ReadyState <> READYSTATE_COMPLETE
DoEvents
Wend
Set o = WebBrowser1.Document
o.getElementsByName("field
o.getElementsByName("field
ret = MsgBox(Quest, vbYesNo)
If ret = vbYes Then o.Forms(0).submit
End Sub
Business Accounts
Answer for Membership
by: metvacetzPosted on 2008-05-01 at 23:39:30ID: 21484908
Hi there, ocumentati on/xhttp/) then hit the url of your website as is submit something eg. name, username, email from contactus form, to trigger your cgi program to send an email message.
Yes It can. You can use http component from xstandard.com in your vba (http://xstandard.com/en/d
This script actually is from vbscript. Modify as your need in vba to adjust vba scripting command.
Good luck
Select allOpen in new window