?? frmsplash.frm
字號:
VERSION 5.00
Begin VB.Form frmSplash
Appearance = 0 'Flat
AutoRedraw = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ClientHeight = 4500
ClientLeft = 4140
ClientTop = 2730
ClientWidth = 6720
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "frmSplash.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4500
ScaleWidth = 6720
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 600
Left = 0
Top = 0
End
Begin VB.Image Image1
Height = 4455
Left = 0
Top = 0
Width = 6735
End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Image1.Picture = LoadPicture(App.Path & "\Source\splashpicture.jpg")
End Sub
Private Sub Timer1_Timer()
frmLogin.Show
Unload Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -