📄 for_0.frm
字号:
VERSION 5.00
Begin VB.Form frm_0
Appearance = 0 'Flat
BackColor = &H00FF8080&
BorderStyle = 0 'None
Caption = "Welcome"
ClientHeight = 3585
ClientLeft = 2895
ClientTop = 2505
ClientWidth = 4005
FillColor = &H0000C000&
FillStyle = 0 'Solid
ForeColor = &H0000C000&
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3585
ScaleWidth = 4005
ShowInTaskbar = 0 'False
Begin VB.CommandButton Command2
Caption = "退出"
Height = 375
Left = 3120
TabIndex = 0
Top = 3000
Width = 735
End
Begin VB.Frame Frame1
BackColor = &H0080C0FF&
Caption = "使用权限"
BeginProperty Font
Name = "黑体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C000C0&
Height = 1332
Left = 240
TabIndex = 4
Top = 1440
Width = 3012
Begin VB.TextBox Text1
Height = 372
IMEMode = 3 'DISABLE
Left = 840
PasswordChar = "*"
TabIndex = 2
Top = 840
Width = 1932
End
Begin VB.ComboBox Combo1
ForeColor = &H00FF0000&
Height = 276
ItemData = "for_0.frx":0000
Left = 840
List = "for_0.frx":0010
TabIndex = 1
Top = 360
Width = 1932
End
Begin VB.Label Label2
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "密 码:"
ForeColor = &H00FF0000&
Height = 180
Left = 120
TabIndex = 6
Top = 840
Width = 648
End
Begin VB.Label Label1
Alignment = 2 'Center
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "登 陆: "
ForeColor = &H00FF0000&
Height = 180
Left = 120
TabIndex = 5
Top = 360
Width = 756
End
End
Begin VB.CommandButton Command1
Caption = "确认"
Height = 372
Left = 2040
TabIndex = 3
Top = 3000
Width = 732
End
Begin VB.Timer Timer1
Interval = 18000
Left = 1200
Top = 3120
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = " 欢迎使用小梁下机提醒系统,请按正常方式登录!"
BeginProperty Font
Name = "新宋体"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF00&
Height = 975
Left = 240
TabIndex = 7
Top = 240
Width = 3375
End
End
Attribute VB_Name = "frm_0"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
If Combo1.Text = "小梁" Then
If Text1.Text = "lhs" Then
Unload Me
Frm_1.Show 1
Else
MsgBox "Sorry,your secret wrong!", 32, "小梁提示"
End If
Else
MsgBox "登陆错误!", 64, "小梁提示"
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -