标题: 关于radiobutton的问题... [打印本页] 作者: wangdongting 时间: 2009-1-13 17:54 标题: 关于radiobutton的问题... Dim i, b
For i = 1 to 3
Select Case i
case 1 b= "First"
case 2 b = "Business"
Case 3 b = "Economy"
End Select
If i = 2 Then
Window("Flight Reservation").WinRadioButton("First").SetTOProperty "text".b
Window("Flight Reservation").WinRadioButton("First").Set
End If
Next
这是按照qtp自带的订票系统做的,我觉得执行这段代码后radio应该选择的是business,可是在run的时候我看见它只是选择了first.所以想问一下,这是什么原因呢?是不是写错了呢?谢谢啦...作者: wangdongting 时间: 2009-1-14 09:53
好吧,自己顶自己吧作者: lingxin5013 时间: 2009-1-14 11:00
For i = 1 to 3
Select Case i
case 1 b= "First"
case 2 b = "Business"
Case 3 b = "Economy"
End Select
If i = 2 Then
Window("Flight Reservation").WinRadioButton("First").SetTOProperty "text",b '你语法写错了吧这里的是逗号 不是句号
Window("Flight Reservation").WinRadioButton("First").Set
End If
Next
我改后运行是可以的作者: wangdongting 时间: 2009-1-14 14:57 标题: 回复 3# 的帖子 谢谢 ,可以了