Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling VB forms from Web Page

Status
Not open for further replies.

asanjue

Programmer
Oct 9, 2000
11
KE
Is it possible to embed a html page in a VB application. I'd like to have a HTML background on an MDI form. Also is it possible to call VB forms from this HTML page. I would like to be able to call the application's child forms from this HTML page. Help will be greatly appreciated.
thanks


 
See the WebBrowser sample project that ships with MSDN. I think that will answer most of your questions.

Additionally, you can shell to an HTML with the ShellExecute API or by using this little trick that member Edderic posted a while back:
[tt]
x = Shell("Start MyHTML.html")[/tt]
VCA.gif

Alt255@Vorpalcom.Intranets.com
 
For displaying vb forms in html, first u should make it as an activex control and then call it with <object> tag from html..
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top