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

📄 frmcodedecode.frm

📁 目前程序中使用的多种数法的源代码,带加解密例子
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmCodeDecode 
   Caption         =   "Code/Decode"
   ClientHeight    =   2460
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   1965
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   ScaleHeight     =   2460
   ScaleWidth      =   1965
   StartUpPosition =   1  'CenterOwner
   Begin VB.CommandButton btnCancel 
      Caption         =   "Cancel"
      Height          =   495
      Left            =   360
      TabIndex        =   2
      Top             =   1680
      Width           =   1215
   End
   Begin VB.CommandButton btnDecode 
      Caption         =   "Decode"
      Height          =   495
      Left            =   360
      TabIndex        =   1
      Top             =   960
      Width           =   1215
   End
   Begin VB.CommandButton btnCode 
      Caption         =   "Code"
      Height          =   495
      Left            =   360
      TabIndex        =   0
      Top             =   240
      Width           =   1215
   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 + -