📄 frmwelcome.frm
字号:
VERSION 5.00
Begin VB.Form frmwelcome
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 2970
ClientLeft = 0
ClientTop = 0
ClientWidth = 4500
LinkTopic = "Form1"
Picture = "frmwelcome.frx":0000
ScaleHeight = 2970
ScaleWidth = 4500
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer2
Interval = 50
Left = 600
Top = 480
End
Begin VB.Label Label2
Alignment = 2 'Center
BackColor = &H00FF0000&
BackStyle = 0 'Transparent
BorderStyle = 1 'Fixed Single
BeginProperty Font
Name = "宋体"
Size = 5.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 100
Left = 1020
TabIndex = 1
Top = 2740
Width = 2460
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "正在加载界面设置"
ForeColor = &H00FFFFFF&
Height = 180
Left = 1530
TabIndex = 0
Top = 2565
Width = 1440
End
Begin VB.Label Label3
BackColor = &H00FF0000&
Height = 80
Left = 1020
TabIndex = 2
Top = 2760
Width = 15
End
End
Attribute VB_Name = "frmwelcome"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim i As Integer
Private Sub Form_Load()
i = 0
Load frmlogin
End Sub
Private Sub Timer2_Timer()
Label3.Width = Label3.Width + 65
If Label3.Width >= Label2.Width / 2 Then
Label1.Caption = "正在加载数据库"
End If
If Label3.Width >= Label2.Width Then
frmlogin.Show
Unload Me
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -