单项选择题 设置标签Label1的( )属性使它不可见。A、 Label 1.Visible = 0B、 Label 1.Visible == 1C、 Label1.Visible = TrueD、 Label 1.Visible = False
单项选择题 下列控件属性赋值语句错误的是( )。A、 Label1 = '欢迎'B、 Text 1.Text = '欢迎'C、 Text1 = '欢迎'D、 Text = '欢迎'
单项选择题 能清除文本框Text1中内容的语句是( )。A、 Text = ''B、 Text 1.Text = ''C、 Text 1.clearD、 Text 1.Cls
单项选择题 使用( )语句将"北京奥运"添加到列表框List1的首相。A、 List1.Text = "北京奥运"B、 List1.AddItem "北京奥运"C、 List1.List(0) = "北京奥运"D、 List1.AddItem "北京奥运",
单项选择题 执行( )语句,可使窗口的按钮Command1上显示“确定”。A、 Command1.Show = '确定'B、 Command1.Caption = '确定'C、 Command1.Name = '确定'D、 Command1.Visible = '确定'