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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running the web-browser in a VFP form.

COM and Automation

Running the web-browser in a VFP form.

by  jimoo  Posted    (Edited  )
Introducing COM 1.01

1. Create a new project (I call mine websample)
2. Go to the 'Classes' tab and add the following VCX file:
_webview.vcx
* mine is in the Gallery directory
* c:\program files\microsoft visual foxpro8\gallary

3. Create and add new Form.

4. Drag and drop, from the Classes Tab (webview.vcx) the control named: webbrowser4

5. Size it to take most of the form.

6. Add a command button

7. Add the following code in the click event:
LOCAL lcURL
lcURL = [http://www.microsoft.com]
THISFORM._webbrowser41.Navigate[&lcURL])

OR HARDCODE THE URL

THISFORM._webbrowser41.Navigate([http://www.microsoft.com])


8. Save and run the form. You should have the web page in a VFP form.

This works with any HTML and you can try if from a file on your local pc too. I.E. ([C:\myhtml.hml])

Take a few minutes and add a URL label and a textbox to the form. Change the code so it navigates to the value in the text box.

Pretty cool...
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top