Adds browse buttons (<< and >>) to the button bar in Windows Help.
Syntax
BrowseButtons()
Parameter | Description |
none |
Comments
If the BrowseButtons macro is used with one or more CreateButton macros in the [CONFIG] section of the Help project file, the left-to-right order of the browse buttons on the Windows Help button bar is determined by the top-down order of the BrowseButtons macro in relation to the other macros listed in the [CONFIG] section. For example, the following [CONFIG] section tells Help to add the Browse buttons between a Clock button and an Exit button:
[CONFIG]
CreateButton("btn_time", "&Clock", "ExecProgram(`clock', 0)")
BrowseButtons()
CreateButton("btn_close", "E&xit", "Exit()")
Depending on how it’s used, the BrowseButtons macro may interfere with the DisableButton macro. See DisableButton for details.
Windows Help ignores this macro if it is executed in a secondary window.
See Also
CreateButton, DisableButton