﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2966	GUISetHelp[2].au3 - example proposal	mLipok	guinness	"http://www.autoitscript.com/forum/topic/166612-guisethelp-how-to-runexecuteview-chm-file


{{{
#include <GUIConstantsEx.au3>

Example_HowTo_Use_CHM_File()

Func Example_HowTo_Use_CHM_File()
	GUICreate(""My GUI"") ; will create a dialog box that when displayed is centered

	Local $sAutoIt_InstallDir = RegRead('HKEY_LOCAL_MACHINE\SOFTWARE\AutoIt v3\AutoIt', 'InstallDir')

	GUISetHelp('hh.exe ""' & $sAutoIt_InstallDir & '\AutoIt.chm""')

	GUISetState(@SW_SHOW) ; will display an empty dialog box

	; Loop until the user exits.
	While 1
		Switch GUIGetMsg()
			Case $GUI_EVENT_CLOSE
				ExitLoop

		EndSwitch
	WEnd

	GUIDelete()
EndFunc   ;==>Example_HowTo_Use_CHM_File

}}}


"	Feature Request	closed	3.3.13.20	Documentation		None	Completed		
