本帖最后由 tcpuuu 于 2012-7-28 12:49 编辑 $gu_Form1 = GUICreate("EXCEL",300,300,-1,-1)
$BUT1 = GUICtrlCreateButton("計算",1,260,42,22,0x01)
;=============================================================================
_EXL()
Func _EXL()
GUISetState(@SW_SHOW)
AdlibRegister("Refesh",1000)
Local $nMsg
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case -3
Exit
Case $BUT1
msgbox(0,"對話框標題","循環中 按下我,還是會有按鈕事件 (多線程)")
EndSwitch
WEnd
EndFunc;==>_EXL
;=============================================================================
Func Refesh()
msgbox(0,"","每秒循環1次")
if 這個窗口標題("Microsoft Excel")的窗口,被最小化 then
最小化到托盤
endif
if 這個托盤圖示被點擊 then
還原窗口
endif
EndFunc;==>_EXL
-------------------------------------------------------------------------------------
我是要 實現以上這樣的 效果 可以做到嗎?
順便 如何更換托盤圖示? |