?? 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 = "正在加載數(shù)據(jù)庫"
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 + -