OnHelp
InstallShield 2024 » InstallScript Language Reference
Project:
• | InstallScript |
• | InstallScript MSI |
The OnHelp event handler responds to the Help event generated when the end user presses the F1 key.
function OnHelp( )
begin
/* Assumes that MySetupHelp.chm is located
in the Support Files/Billboards view. */
LaunchAppAndWait( WINDIR ^ "Hh.exe",
SUPPORTDIR ^ "MySetupHelp.chm",
NOWAIT );
end;