相关考题
-
单项选择题
假定窗体的名称(Name属性)为Form1,则把窗体的标题设置为“VB Test”的语句为()。
A.Form1=”VB Test”
B.Caption=”VB Test”
C.Form1.Text=”VB Test”
D.Form1.Name=”VB Test” -
单项选择题
已知在“通用”代码有以下语句: Dim tt()As Integer 则,在某一事件代码中使用()是正确的。
A.ReDim tt(3,4) As boolean
B.ReDim tt(4) As String
C.ReDim tt(10)
D.ReDim tt( ) -
单项选择题
设a=5,则执行x=IIf(a>6,-1,0)后,x的值为()。
A.5
B.6
C.0
D.-1
