encrypt.frm

来自「有保存/装载能力的简单加密程序。This is a simple encrypt」· FRM 代码 · 共 120 行

FRM
120
字号
VERSION 4.00
Begin VB.Form Form1 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Simple Encrypt"
   ClientHeight    =   2175
   ClientLeft      =   3780
   ClientTop       =   3255
   ClientWidth     =   4740
   Height          =   2580
   Icon            =   "Encrypt.frx":0000
   Left            =   3720
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   ScaleHeight     =   2175
   ScaleWidth      =   4740
   Top             =   2910
   Width           =   4860
   Begin VB.CommandButton Command4 
      Caption         =   "Exit"
      Height          =   330
      Left            =   2625
      TabIndex        =   6
      Top             =   1785
      Width           =   750
   End
   Begin VB.TextBox Text2 
      Height          =   285
      Left            =   4410
      TabIndex        =   5
      Text            =   "1"
      Top             =   1785
      Width           =   225
   End
   Begin VB.CommandButton Command3 
      Caption         =   "Decrypt"
      Height          =   330
      Left            =   1785
      TabIndex        =   3
      Top             =   1785
      Width           =   750
   End
   Begin VB.CommandButton Command2 
      Caption         =   "Save"
      Height          =   330
      Left            =   945
      TabIndex        =   2
      Top             =   1785
      Width           =   750
   End
   Begin VB.CommandButton Command1 
      Caption         =   "Encrypt"
      Height          =   330
      Left            =   105
      TabIndex        =   1
      Top             =   1785
      Width           =   750
   End
   Begin VB.TextBox Text1 
      Height          =   1695
      Left            =   0
      MultiLine       =   -1  'True
      ScrollBars      =   2  'Vertical
      TabIndex        =   0
      Top             =   0
      Width           =   4740
   End
   Begin VB.Label Label1 
      Caption         =   "E-Level:"
      Height          =   225
      Left            =   3780
      TabIndex        =   4
      Top             =   1785
      Width           =   645
   End
   Begin MSComDlg.CommonDialog CommonDialog1 
      Left            =   0
      Top             =   1680
      _ExtentX        =   847
      _ExtentY        =   847
      _Version        =   393216
   End
End
Attribute VB_Name = "Form1"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Private Sub Command1_Click()
Encrypt
End Sub


Private Sub Command2_Click()
Save
End Sub


Private Sub Command3_Click()
Decrypt
End Sub


Private Sub Command4_Click()
Quit
End Sub


Private Sub Form_Deactivate()

End Sub

Private Sub Form_Terminate()

End Sub


Private Sub Form_Unload(Cancel As Integer)
Quit
End Sub


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?