[已解决]安装选择动作如何写?谢谢。
本帖最后由 tssheng 于 2011-6-27 01:11 编辑像这副图,某某软件可以点击其中一个安装。只需要点某一个可以安装就可以了,在点其中一个时运行时,点中后退出选择界面并运行。如果一个都不想安装就点击不安装。。
谢谢。 #include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 156, 202, 192, 124)
$Button1 = GUICtrlCreateButton("软件1", 40, 24, 75, 25)
$Button2 = GUICtrlCreateButton("软件2", 40, 64, 75, 25)
$Button3 = GUICtrlCreateButton("软件3", 40, 104, 75, 25)
$Button4 = GUICtrlCreateButton("不安装", 40, 144, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
;run(........)
;exit
Case $Button2
;run(........)
;exit
Case $Button3
;run(........)
;exit
Case $Button4
exit
EndSwitch
WEnd
你新来的? 回复 1# tssheng
修改标题,便于他人搜索!
否则扣分处理!
页:
[1]