?? 開始界面.frm
字號:
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 0 'None
Caption = "Form2"
ClientHeight = 4425
ClientLeft = 5445
ClientTop = 3270
ClientWidth = 4845
LinkTopic = "Form2"
MousePointer = 11 'Hourglass
Moveable = 0 'False
ScaleHeight = 4425
ScaleWidth = 4845
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 3500
Left = 240
Top = 3780
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "2006-4-28"
Height = 255
Left = 2460
TabIndex = 2
Top = 4080
Width = 975
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "版權所有! "
Height = 255
Left = 1260
TabIndex = 1
Top = 4080
Width = 975
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "歡迎使用劍鋒工作室制作的軟件!"
Height = 255
Left = 1020
TabIndex = 0
Top = 3780
Width = 2715
End
Begin VB.Image Image1
Height = 3600
Left = 0
Picture = "開始界面.frx":0000
Top = 0
Width = 4830
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
'Form1.Hide
'Me.Show
Timer1.Enabled = True
End Sub
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Timer1.Enabled = False
Unload Form2
Form1.Show
End Sub
Private Sub Image1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Timer1.Enabled = False
Unload Form2
Form1.Show
End Sub
Private Sub Timer1_Timer()
Unload Form2
Form1.Show
Timer1.Enabled = False
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -