📄 frmflash.frm
字号:
VERSION 5.00
Begin VB.Form FrmFlash
BorderStyle = 0 'None
Caption = "flash"
ClientHeight = 3000
ClientLeft = 0
ClientTop = 0
ClientWidth = 4725
Icon = "FrmFlash.frx":0000
LinkTopic = "Form1"
Picture = "FrmFlash.frx":0CCA
ScaleHeight = 3000
ScaleWidth = 4725
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 1000
Left = 3240
Top = 2400
End
End
Attribute VB_Name = "FrmFlash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Left = (Screen.Width - Me.Width) / 2
Me.Top = (Screen.Height - Me.Height) / 2
Explode Me, 1000 ' open this form by number of desired increment
End Sub
Private Sub Timer1_Timer()
Me.Refresh
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -