diandiand163 发表于 2008-5-26 08:26:44

VB中的CHECK判断用AU3怎么写

下面全部勾选后 点击Command1 后 怎么才能 让 1.EXE 运行结束后 在运行2.exe 以次类推

请把 代码写全了 我是新手 写好了 给你加分

Private Sub Command1_Click()
If Check1.Value = 1 Then
Shell ("C:\1.exe") '路径
End If
If Check2.Value = 1 Then
Shell ("C:\2.exe") '路径
End If
If Check3.Value = 1 Then
Shell ("C:\3.exe") '路径
End If
If Check4.Value = 1 Then
Shell ("C:\4.exe") '路径
End If
If Check5.Value = 1 Then
Shell ("C:\5.exe") '路径
End If
If Check6.Value = 1 Then
Shell ("C:\6.exe") '路径
End If
If Check7.Value = 1 Then
Shell ("C:\7") '路径
End If
If Check8.Value = 1 Then
Shell ("C:\8") '路径
End If
End Sub
请问AU3怎么写?

[ 本帖最后由 diandiand163 于 2008-7-11 12:18 编辑 ]

sanhen 发表于 2008-5-26 09:19:01

善于搜索论坛:

http://www.autoitx.com/forum.php?mod=viewthread&tid=742&highlight=GUICtrlCreateCheckbox

http://www.autoitx.com/forum.php?mod=viewthread&tid=461&highlight=GUICtrlCreateCheckbox
页: [1]
查看完整版本: VB中的CHECK判断用AU3怎么写