📄 frmclean.frm
字号:
VERSION 5.00
Begin VB.Form frmclean
Caption = "数据清理"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 2 '屏幕中心
Begin VB.TextBox Text1
ForeColor = &H000000FF&
Height = 1575
Left = 720
MultiLine = -1 'True
TabIndex = 1
Text = "frmclean.frx":0000
Top = 960
Width = 3255
End
Begin VB.CommandButton command1
Caption = "开始清理"
BeginProperty Font
Name = "隶书"
Size = 15.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 1080
TabIndex = 0
Top = 120
Width = 2655
End
End
Attribute VB_Name = "frmclean"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub command1_Click()
Dim answer As String
answer = MsgBox("确定要清理吗?", 64 + 4, "信息提示")
If answer = 7 Then
Exit Sub
Else
MsgBox "此清理功能代码编制未完成!"
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -