⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmcompdecomp.frm

📁 加密解密及压缩解压算法.大致有21种加密/解密算法源代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmCompDecomp 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "压缩/解压缩"
   ClientHeight    =   2145
   ClientLeft      =   7830
   ClientTop       =   5325
   ClientWidth     =   1995
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2145
   ScaleWidth      =   1995
   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
End
Attribute VB_Name = "frmCompDecomp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'#########################################################################
'★★★★★         http://www.cnpopsoft.com [华普软件]         ★★★★★
'★★★★★             VB专业论文与源码荟萃                    ★★★★★
'#########################################################################

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 + -