📄 frmcompdecomp.frm
字号:
VERSION 5.00
Begin VB.Form frmCompDecomp
BorderStyle = 1 'Fixed Single
Caption = "压缩/解压缩"
ClientHeight = 2850
ClientLeft = 45
ClientTop = 330
ClientWidth = 1995
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2850
ScaleWidth = 1995
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton btnCancel
Caption = "取消"
Height = 495
Left = 390
TabIndex = 2
Top = 1470
Width = 1215
End
Begin VB.CommandButton btnDeCompress
Caption = "解压缩"
Height = 495
Left = 390
TabIndex = 1
Top = 870
Width = 1215
End
Begin VB.CommandButton btnCompress
Caption = "压缩"
Height = 495
Left = 360
TabIndex = 0
Top = 240
Width = 1215
End
Begin VB.Label Label1
Caption = "海阔天空收集整理 http://www.play78.com"
Height = 675
Left = 30
TabIndex = 3
Top = 2070
Width = 1935
End
End
Attribute VB_Name = "frmCompDecomp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub btnCancel_Click()
CompDecomp = 0
Me.Hide
End Sub
Private Sub btnCompress_Click()
CompDecomp = 1
Me.Hide
End Sub
Private Sub btnDeCompress_Click()
CompDecomp = 2
Me.Hide
End Sub
Private Sub Form_Load()
CompDecomp = 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -