📄 formlogin.frm
字号:
VERSION 5.00
Begin VB.Form FormLogin
BackColor = &H8000000E&
BorderStyle = 1 'Fixed Single
Caption = "欢迎使用运输行业管理系统"
ClientHeight = 6915
ClientLeft = 45
ClientTop = 360
ClientWidth = 7815
Icon = "FormLogin.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6915
ScaleWidth = 7815
StartUpPosition = 3 '窗口缺省
Begin VB.PictureBox Picture1
AutoSize = -1 'True
BorderStyle = 0 'None
Height = 4020
Left = 120
Picture = "FormLogin.frx":014A
ScaleHeight = 4020
ScaleWidth = 7620
TabIndex = 2
Top = 2040
Width = 7620
End
Begin VB.Label LabelEnter
Alignment = 1 'Right Justify
BackStyle = 0 'Transparent
Caption = "点击进入系统"
BeginProperty Font
Name = "隶书"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 855
Left = 0
TabIndex = 1
Top = 6120
Width = 7815
End
Begin VB.Label LabelTitle
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "欢迎使用运输行业管理系统"
BeginProperty Font
Name = "华文彩云"
Size = 48
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 2295
Left = 840
TabIndex = 0
Top = 120
Width = 5895
End
End
Attribute VB_Name = "FormLogin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
'确定该程序没有被启动过
If App.PrevInstance Then
MsgBox "您已经启动过了本程序!", , "运输行业管理系统"
End
End If
End Sub
Private Sub LabelEnter_Click()
'退出本窗体
Unload Me
'启动主窗体
MDIFrm.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -