?? frmflash.frm
字號:
VERSION 5.00
Begin VB.Form FrmFlash
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 615
ClientLeft = 0
ClientTop = 0
ClientWidth = 3480
LinkTopic = "Form1"
ScaleHeight = 615
ScaleWidth = 3480
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Timer Timer1
Interval = 5000
Left = 960
Top = 420
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "數據處理中..."
BeginProperty Font
Name = "楷體_GB2312"
Size = 20.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 375
Left = 330
TabIndex = 0
Top = 105
Width = 2985
End
Begin VB.Shape Shape2
BackColor = &H00C0C000&
BackStyle = 1 'Opaque
Height = 420
Left = 90
Top = 105
Width = 3330
End
Begin VB.Shape Shape1
BackColor = &H00808000&
BackStyle = 1 'Opaque
Height = 615
Left = 0
Top = 0
Width = 3480
End
End
Attribute VB_Name = "FrmFlash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
'讓窗口始終在所有窗口的上面
SetFormTop Me.hwnd, True
End Sub
Private Sub Timer1_Timer()
Unload Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -