?? frmlogin.frm
字號:
VERSION 5.00
Begin VB.Form frmLogin
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 4725
ClientLeft = 0
ClientTop = 0
ClientWidth = 6825
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 4725
ScaleWidth = 6825
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1000
Left = 1920
Top = 3360
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "歡迎使用西安市超市查詢信息系統(tǒng)"
BeginProperty Font
Name = "宋體"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 495
Left = 1080
TabIndex = 0
Top = 960
Width = 4815
End
Begin VB.Image Image1
Height = 4695
Left = 0
Top = 0
Width = 6855
End
End
Attribute VB_Name = "frmLogin"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Dim strPath As String
Image1.Width = Me.Width
Image1.Height = Me.Height
Image1.Left = 0
Image1.Top = 0
Image1.Stretch = True
strPath = App.Path + "\Picture\"
Image1.Picture = LoadPicture(strPath & "sx.jpg")
Timer1.Interval = 1000
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
Dim i As Integer
i = 1
While (i <= 3)
i = i + 1
Wend
Unload frmLogin
' frmMain.Show
Load frmMain
frmMain.Show
Timer1.Enabled = False
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -