我输入的VB6.0中的代码对么??
Private Sub Command1_Click()
Command1.Visible = False
Text1.Visible = False
Labe11.Visible = True
Labe12.Visible = True
Labe12.AutoSize = True
Labe12.FontSize = 12
Labe12.ForeColor = vbRed
Labe12.Caption = Text1.Text
Command2.Visible = True
Command3.Visible = True
End Sub
Private Sub Command2_Clic()
Command2.Visible = False
Command3.Visible = False
Labe11.Visible = True
Labe12.Visible = False
Command1.Visible = True
Text1.Visible = True
End Sub
Private Sub Command3_Click()
End
End Sub
参考答案:Command2_Clic少了一个k。。
Command3_Click()
End
End Sub
多了一个end啊