函数参考


GUISetHelp

设置在用户按下F1时就打开的(可执行)文件.

GUISetHelp ( 帮助文件 [, 窗口句柄] )

参数

帮助文件 在 GUI 窗口被激活的情况下按下 F1 时就运行此文件.
窗口句柄 [可选参数] 窗口句柄,可由 GUICreate 的返回值获得(若缺省则使用上一次用过的窗口句柄).

返回值

成功: 返回值为1.
失败: 返回值为0.

注意/说明

None.

相关

GUICreate

示例/演示


#include <GUIConstantsEx.au3>

Example()

Func Example()
    Local $msg

    GUICreate("My GUI") ; will create a dialog box that when displayed is centered

    GUISetHelp("notepad.exe") ; will run notepad if F1 is typed


    GUISetState() ; will display an empty dialog box

    ; Run the GUI until the dialog is closed
    While 1
        $msg = GUIGetMsg()

        If $msg = $GUI_EVENT_CLOSE Then ExitLoop
    WEnd
EndFunc   ;==>Example