bgiHTMLGoForward

Navigates forward one step in the HTMLView control's browsing history. Takes htmlViewID (Int). Returns nothing.

BGI GUI

Parameters & Returns

Parameters

htmlViewID Int

Returns

Void

Quick Summary

Navigates forward one step in the HTMLView control's browsing history. Takes htmlViewID (Int). Returns nothing.

Technical Exegesis...

Navigates forward one step in the HTMLView control's browsing history. Searches webBrowserMap for htmlViewID. If found, gets IWebBrowser2* interface. Calls pBrowser->GoForward() to navigate to next page in history stack. No return value.

This function mimics browser's forward button functionality. Navigation history is maintained internally by IWebBrowser2 control. GoForward() navigates to next entry in history stack (if exists).

Example

Example.bam
; No example implemented yet