www.pudn.com > myActivebart.rar > logo.frm
VERSION 5.00
Begin VB.Form Form2
Caption = "登陆框"
ClientHeight = 1500
ClientLeft = 60
ClientTop = 345
ClientWidth = 4125
Icon = "logo.frx":0000
LinkTopic = "Form2"
ScaleHeight = 1500
ScaleWidth = 4125
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox Picture1
BorderStyle = 0 'None
Height = 495
Left = 150
Picture = "logo.frx":08CA
ScaleHeight = 495
ScaleWidth = 615
TabIndex = 4
Top = 270
Width = 615
End
Begin VB.CommandButton Command2
Caption = "退出"
Height = 405
Left = 2730
TabIndex = 3
Top = 840
Width = 1065
End
Begin VB.CommandButton Command1
Caption = "进入"
Height = 405
Left = 1650
TabIndex = 2
Top = 840
Width = 1065
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 360
IMEMode = 3 'DISABLE
Left = 1620
PasswordChar = "*"
TabIndex = 1
Top = 300
Width = 2175
End
Begin VB.Label Label1
Caption = "密码:"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 840
TabIndex = 0
Top = 330
Width = 735
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Trim(Text1.Text) = password Then
Form1.Show
Unload Form2
Else
MsgBox ("密码输入错误")
End If
End Sub
Private Sub Command2_Click()
End
End Sub