Hyperlink
The Hyperlink object allows you to include links to the World Wide Web as native controls within your FoxPro forms. These links work within stand-alone FoxPro applications and in Active Documents.
Method |
Purpose |
Moves to the previous link in the history list. |
|
Moves to the next link in the history list. |
|
Navigates to the specified link. Starts a browser if used in a stand-alone FoxPro application. |
Example |
* In a stand-alone app, you can invoke a browser with: oLink = CREATEOBJECT("hyperlink") oLink.NavigateTo("http://www.microsoft.com/vfoxpro") * You don't need to be limited to the World Wide Wait * Browsers can also host other documents, if their * associated viewer applications are installed: oLink.NavigateTo("d:\My Documents\MyLetter.DOC") |
See Also |