【VB开源代码栏目提醒】:以下是网学会员为您推荐的VB开源代码-Ex6_2.frm,希望本篇文章对您学习有所帮助。
VERSION 5.00
Begin VB.Form Ex6_2
Caption = "Form1"
ClientHeight = 1935
ClientLeft = 60
ClientTop = 450
ClientWidth = 3390
LinkTopic = "Form1"
ScaleHeight = 1935
ScaleWidth = 3390
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
Height = 375
Left = 1560
TabIndex = 2
Text = "Text1"
Top = 480
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 375
Left = 1080
TabIndex = 0
Top = 1200
Width = 1095
End
Begin
VB.Label Label1
Caption = "Label1"
Height = 375
Left = 240
TabIndex = 1
Top = 480
Width = 975
End
End
Attribute VB_Name = "Ex6_2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim x As New Ex6_2
x.Show
End Sub