请问,怎样在Form1激活的时候执行一条命令?[已解决]
本帖最后由 xiaogou5852 于 2011-12-19 12:12 编辑RT
怎样在Form1激活的时候执行一条命令?
也就是说,#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
$Form1 = GUICreate("Form1", 301, 167, 396, 288)
GUISetOnEvent($GUI_EVENT_CLOSE,"_Exit")
GUISetState(@SW_SHOW)
While 1
Sleep(100)
WEnd
Func _Exit()
Exit
EndFunc显示Form1后 执行MsgBox OnautoItstart 去看一下那个,我忘记了。 #include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
Opt("GUIOnEventMode", 1)
$Form1 = GUICreate("Form1", 301, 167, 396, 288)
GUISetOnEvent($GUI_EVENT_CLOSE,"_Exit")
GUISetState(@SW_SHOW)
While 1
Sleep(100)
WEnd
msgbox(0,0,0)
Func _Exit()
Exit
EndFunc 进来学习了 回复 3# netegg
谢谢您了,但是这样无效。
使用#OnAutoItStartRegister解决了。 回复 5# xiaogou5852
别客气,你的问题有些不太明确,理解错了,对不起 回复 6# netegg
还有一个问题,就是我强制隐藏了其他程序的托盘图标,但是隐藏后托盘会多出一个空格,请问您知道怎样刷新托盘图标么?
页:
[1]