Logo

Hacker’s Guide to Visual FoxPro
An irreverent look at how Visual FoxPro really works. Tells you the inside scoop on every command, function, property, event and method of Visual FoxPro.

GoBack, GoForward

These commands instruct the current Active Document host to navigate back or forward through its history list.

Usage

oLink.GoBack()
oLink.GoForward()

The Go commands mean nothing when running in a VFP shell, and nothing happens. Only when the hyperlink object is in an ActiveDocument that is itself hosted in a browser supporting history do the GoBack() and GoForward() methods actually navigate the browser to another address.

Example

oLink.GoBack()
oLink.GoForward()

See Also

Hyperlink, NavigateTo