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

📄 frmcodedecode.frm

📁 21加密算法,用vB语言编写实现,可了解各种加密算法的结构
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmCodeDecode 
   Caption         =   "加密/解密 "
   ClientHeight    =   3015
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   2055
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   ScaleHeight     =   3015
   ScaleWidth      =   2055
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton btnCancel 
      Caption         =   "取消"
      Height          =   495
      Left            =   360
      TabIndex        =   2
      Top             =   1680
      Width           =   1215
   End
   Begin VB.CommandButton btnDecode 
      Caption         =   "解密"
      Height          =   495
      Left            =   360
      TabIndex        =   1
      Top             =   960
      Width           =   1215
   End
   Begin VB.CommandButton btnCode 
      Caption         =   "加密"
      Height          =   495
      Left            =   360
      TabIndex        =   0
      Top             =   240
      Width           =   1215
   End
   Begin VB.Label Label1 
      Caption         =   "海阔天空收集整理 http://www.play78.com"
      Height          =   465
      Left            =   60
      TabIndex        =   3
      Top             =   2310
      Width           =   1935
   End
End
Attribute VB_Name = "frmCodeDecode"
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 btnCode_Click()
    CompDecomp = 1
    Me.Hide
End Sub

Private Sub btnDecode_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 + -