题目内容
(24 ) 窗体上有名称分别为 Text1 、 Text2 的 2 个文本框 , 有一个由 3 个单选按钮构成的控件数组 Option1 ,如图 2 所示 。 程序运行后 , 如果单击某个单选按钮 , 则执行 Text1 中的数值与该单选按钮所对应的运算(乘以 1 、 10 或 100 ),并将结果显示在 Text2 中,如图 3 所示。为了实现以上功能,在程序中的问号()处应填入的内容是()。
Private Sub Option1_Click(Index As Integer)
If Text1.Text<> “ “ Then
Select Case ?
Case 0
Text2.Text=Val(Text1.Text)
Case 1
Text2.Text=Val(Text1.Text)*10
Case 2
Text2.Text=Val(Text1.Text)*100
End Select
End If
End Sub
A ) Index
B ) Option1.Index
C ) Option1(Index)
D ) Option1(Index).Value
查看答案
搜索结果不匹配?点我反馈
更多问题