新手请教问题 关于“未找到方法和数据成员”
我编了一个小程序 实现按钮按下 切换三个图像的亮暗 另一个按钮按下结束程序。默认状态是其中一个图像可见。Private Sub Command1_Click()
If Image1.Visible = True Then
Image1.Visible = False
Image2.Visible = True
ElseIf Image2.Visible = True Then
Image2.Visible = False
Image3.Visible = True
Else
Image3.Visible = False
Image1.Visible = True
End If
End Sub
Private Sub Command2_Click()
End
End Sub
Private Sub Form_Load()
Image1.Visible = True
Image2.Visible = False
Image3.Visible = False
End Sub
运行完毕 出现标题中所说的问题。。请教