_CHMShowOnF1

Shows CHM file (having manual, help info, etc.) located in @ScriptDir after pressing F1 on a GUI, file may have or not have the .chm extension

#include "Miscellaneous.au3"
_CHMShowOnF1( $cCHMFile [, $cTopic] )

parameters

$cCHMFile CHM (help manual) file
$cTopic = "" Topic (section) to show

related

_CHMShow

examples

$hGUI = GUICtreate("My interface")
_CHMShowOnF1("My chm manual")
While 1
   ...