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