level 1
用一个按扭来控制一个标签的可见与不可见 用 visiable属性
2014年06月09日 09点06分
1
level 6
Label1.Visible = Not Label1.Visible
2014年06月09日 13点06分
2
一定是老程序员!!!
2014年06月10日 09点06分
level 11
Static a As Boolean
If a = False Then
Label1.Visible = False
a = True
Else
Label1.Visible = True
a = False
End If
2014年06月10日 04点06分
3