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] ) |
$cCHMFile | CHM (help manual) file |
$cTopic = "" | Topic (section) to show |
$hGUI = GUICtreate("My interface")
_CHMShowOnF1("My chm manual")
While 1
...