【VB开源代码栏目提醒】:网学会员--在 VB开源代码编辑为广大网友搜集整理了:1.6.frm绩等信息,祝愿广大网友取得需要的信息,参考学习。
VERSION 5.00
Begin VB.Form vb01
BackColor = &H00808080&
Caption = "Form1"
ClientHeight = 3315
ClientLeft = 60
ClientTop = 345
ClientWidth = 4800
LinkTopic = "Form1"
ScaleHeight = 3315
ScaleWidth = 4800
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton hide
Caption = "隐藏"
Height = 495
Left = 2520
TabIndex = 2
Top = 2040
Width = 1215
End
Begin VB.CommandButton show
Caption = "显示"
Height = 495
Left = 600
TabIndex = 1
Top = 2040
Width = 1335
End
Begin
VB.Label wenzi
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "Hello World"
BeginProperty Font
Name = "楷体_GB2312"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 435
Left = 1320
TabIndex = 0
Top = 240
Width = 2595
End
End
Attribute VB_Name = "vb01"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub hide_Click()
wenzi.Visible = False
End Sub
Private Sub show_Click()
wenzi.Visible = True
End Sub