itgle.com

以下能在窗体Form1的标题栏中显示“Visual Basic窗体”的语句是A.Form1.Name=“Visual Basic窗体”B.Form1.Title=“VisualBasic窗体”C.Form1.Caption=“VisualBasic窗体”D.Form1.Text=“VisualBasic窗体”

题目

以下能在窗体Form1的标题栏中显示“Visual Basic窗体”的语句是

A.Form1.Name=“Visual Basic窗体”

B.Form1.Title=“VisualBasic窗体”

C.Form1.Caption=“VisualBasic窗体”

D.Form1.Text=“VisualBasic窗体”


相似考题
更多“以下能在窗体Form1的标题栏中显示“Visual Basic窗体”的语句是A.Form1.Name=“Visual Basic窗体”B. ”相关问题
  • 第1题:

    以下能在窗体Forml的标题栏中显示“Visual Basic窗体”的语句是( )。

    A.Forml.Namer="VisualBasic窗体"

    B.Forml.Title="VisualBasic窗体"

    C.Forml.Caption="VisualBasic窗体"

    D.Forml.Text="VisualBasic窗体"


    正确答案:C

  • 第2题:

    在窗体上画了两个按钮控件Command1和Command2,有如下程序: Private Sub Command1_Click() Print "Visual"; End Sub Private Sub Command2_Click() Print "Basic"; End Sub Private Sub Form_Load() CommandCancel=True Command1.Cancel=True End Sub 执行程序后,按键盘Cancel键,在窗体上输出的结果是

    A.Basic

    B.Visual

    C.Cancel

    D.True


    正确答案:B
    解析:窗体中只能有一个CommandButton控件为取消按钮。当一个CommandButton控件的Cancel属性被设置为Tree时,窗体中其他CommandButton控件的Cancel属性自动地被设置为False。当CommandButton控件的Cancel属性被设置为True,而且当前窗体处于活动状态时,按Cancel键可以触发该按钮Click事件,而不管该控件是否获得焦点。本题开始时Command2的Cancel属性为,True,但随后由于Command1的该属性变为True,Command2的Cancel属性变为False,因此按Cancel键后执行Command1_Click过程。

  • 第3题:

    要在窗体Form1内显示字符串"Basic",可以使用的语句是()。

    A Form.Caption="Basic"

    B Form1.Caption="Basic"

    C Form1.Print "Basic"

    D Form.Print "Basic"


    C

  • 第4题:

    以下能在窗体Form1的标题栏中显示“VisualBasic窗体”的语句是

    A.Form1.Name=“VisualBasic窗体”

    B.Form1.Title=“VisualBasic窗体”

    C.Form1.Caption=“VisualBasic窗体”

    D.Form1.Text=“VisualBasic窗体”


    正确答案:C
    解析:此题考察窗体的属性,Caption属性用来设置窗体标题栏中显示的文本内容,题目要求在窗体标题栏中显示“VisualBasic窗体”,只有选项

  • 第5题:

    以下各项中,不是字符串常量的是:( )

    A、”Visual”

    B、”等级考试”

    C、””

    D、//Basic//


    正确答案:D