clearform.frm
来自「一套VB完整的灯具销售管理系统设计」· FRM 代码 · 共 129 行
FRM
129 行
VERSION 5.00
Begin VB.Form ClearForm
AutoRedraw = -1 'True
BorderStyle = 3 'Fixed Dialog
Caption = "发票消毁后,将不能恢复!"
ClientHeight = 3225
ClientLeft = 45
ClientTop = 330
ClientWidth = 5175
Icon = "ClearForm.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3225
ScaleWidth = 5175
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "按任意键继续......"
ForeColor = &H00800000&
Height = 180
Left = 2550
TabIndex = 3
Top = 2790
Width = 1620
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "警惕!"
BeginProperty Font
Name = "宋体"
Size = 72
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000C0&
Height = 1455
Index = 2
Left = 765
TabIndex = 2
Top = 615
Width = 4320
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "警惕!"
BeginProperty Font
Name = "宋体"
Size = 72
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 1455
Index = 1
Left = 795
TabIndex = 1
Top = 615
Width = 4320
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "警惕!"
BeginProperty Font
Name = "宋体"
Size = 72
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00808080&
Height = 1455
Index = 0
Left = 720
TabIndex = 0
Top = 615
Width = 4320
End
End
Attribute VB_Name = "ClearForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Click()
Unload Me
ClearForm.MousePointer = 11
Load ClearFp
ClearForm.MousePointer = 0
ClearFp.Show 1
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
Unload Me
ClearForm.MousePointer = 11
Load ClearFp
ClearForm.MousePointer = 0
ClearFp.Show 1
End Sub
Private Sub Label1_Click(Index As Integer)
Unload Me
ClearForm.MousePointer = 11
Load ClearFp
ClearForm.MousePointer = 0
ClearFp.Show 1
End Sub
Private Sub Label2_Click()
Unload Me
ClearForm.MousePointer = 11
Load ClearFp
ClearForm.MousePointer = 0
ClearFp.Show 1
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?