Function Reference

首页  后退  前进

GUISetHelp

 

设置点击 F1 时运行的可执行文件.

 

GUISetHelp ( helpfile [, winhandle] )

参数

helpfile

GUI 窗口激活时,点击 F1 时运行的文件名称.

winhandle

[可选]GUICreate() 函数返回的窗口句柄 (默认为先前使用的窗口).

返回值

成功:

返回 1.

失败:

返回 0.

相关

GUICreate

函数示例

#include <GUIConstantsEx.au3>
Example()
Func Example()
    Local $hGUI = GUICreate("Example")
    Local $sAutoItInstallDir = RegRead("HKEY_LOCAL_MACHINE\SOFTWARE" & ((@OSArch = 'X64') ? "\Wow6432Node" : "") & "\AutoIt v3\AutoIt", "InstallDir")
    If Not @error Then
        GUISetHelp('hh.exe "' & $sAutoItInstallDir & '\AutoIt.chm"')
    EndIf
    ; Display the GUI.
    GUISetState(@SW_SHOW, $hGUI)
    ; Loop until the user exits.
    While 1
        Switch GUIGetMsg()
            Case $GUI_EVENT_CLOSE
                ExitLoop
        EndSwitch
    WEnd
    GUIDelete()
EndFunc   ;==>Example

----------------------------------------