• 2022-06-26
    窗体上添加有3个命令按钮,分别命名为C1、C2和C3。编写C1的单击事件过程,完成的功能为:当单击按钮C1时,按钮C2可见,按钮C3不可用。下列语句中正确的是( )。
    A: Private Sub C1_C1ick()
    B: C2.ViSible=True
    C: C3.ViSible=False
    D: End Sub
    E: Private Sub C1_Click()
    F: C2.Enabled=True
    G: C3.Enabled=False
    H: End Sub
    I: Private Sub C1_Click()
    J: C2.Enabled=True
    K: C3.Visible=False
    L: End Sub
    M: Private Sub C1_Click()
    N: C2.Visible=True
    O: C3.Enabled=False
    P: End Sub
  • 举一反三