有2个问题。一个是托盘图标,一个是标题问题。
如何将这个托盘图标删除呢?--------------------------------------------
runwait(XX) 的时候 在标题显示 123
runwait (YY)的时候 在标题显示 234
[ 本帖最后由 as86455011 于 2009-2-5 23:11 编辑 ]
1、脚本开头加如下代码。
#NoTrayIcon[ 本帖最后由 范统.贾 于 2009-2-2 16:29 编辑 ]
2、一个例子
$Form1 = GUICreate("X+Y", 424, 141, 192, 114)$Button1 = GUICtrlCreateButton("X", 80, 32, 97, 49, 0)
$Button2 = GUICtrlCreateButton("Y", 237, 33, 97, 49, 0)
GUISetState()
While 1
Switch GUIGetMsg()
Case -3
Exit
Case $Button1
WinSetTitle("", "", "X")
Case $Button2
WinSetTitle("", "", "Y")
EndSwitch
WEnd 没找到我要的,唉! $Form1 = GUICreate("X+Y", 424, 141, 192, 114)
$Button1 = GUICtrlCreateButton("X", 80, 32, 97, 49, 0)
$Button2 = GUICtrlCreateButton("Y", 237, 33, 97, 49, 0)
GUISetState()
While 1
Switch GUIGet ...
范统.贾 发表于 2009-2-2 16:27 http://www.autoitx.com/images/common/back.gif
你给的脚本好像和标题没关系唉!
页:
[1]