📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form form2
BorderStyle = 0 'None
Caption = "Form2"
ClientHeight = 5985
ClientLeft = 0
ClientTop = 0
ClientWidth = 7470
LinkTopic = "Form2"
ScaleHeight = 5985
ScaleWidth = 7470
ShowInTaskbar = 0 'False
StartUpPosition = 1 '所有者中心
Begin VB.Timer Timer1
Interval = 3000
Left = 5880
Top = 3600
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()
Me.Picture = LoadPicture(App.Path & "\images\logo.jpg")
End Sub
Private Sub Timer1_Timer()
Unload Me
form3.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -