yinbinly 发表于 2011-5-2 23:17:17

[已解决]如何打开复选框,并选中一项

本帖最后由 yinbinly 于 2011-5-3 19:21 编辑

本人做自动安装GGHOST一键恢复,遇到的问题,上图

我使用MouseClick无法实现,我想点下复选框,然后选择第二项。

netegg 发表于 2011-5-2 23:25:02

首先那个不是复选框,看看ControlCommand

mo_shaojie 发表于 2011-5-3 08:14:52

那个是combox.

yinbinly 发表于 2011-5-3 18:39:03

回复 2# netegg


    ControlCommand抓取不到

yinbinly 发表于 2011-5-3 18:39:24

回复 3# mo_shaojie


    combox这个也无法实现

netegg 发表于 2011-5-3 18:47:25

本帖最后由 netegg 于 2011-5-3 18:50 编辑

ControlCommand ( "窗口标题", "窗口文本", 控件ID, "SelectString", '字符串')

pcbar 发表于 2011-5-3 19:07:52

WinActivate("GGhost一键恢复 安装程序    ")
ControlCommand ( "GGhost一键恢复 安装程序", "", "ComboBox1", "SetCurrentSelection" ,0);选择第一个,即D盘
ControlCommand ( "GGhost一键恢复 安装程序", "", "ComboBox2", "SetCurrentSelection" ,1);选择第二个,即mbr方式
ControlCommand ( "GGhost一键恢复 安装程序", "", "ComboBox3", "SelectString" ,"30");选择30秒
多看帮助啊

yinbinly 发表于 2011-5-3 19:20:08

回复 7# pcbar


    谢谢斑竹,我以前只选第二个,就是说只弄第二条代码,下次会注意了
页: [1]
查看完整版本: [已解决]如何打开复选框,并选中一项