📄 encrypt.frm
字号:
VERSION 5.00
Object = "{75D4F6FF-8785-11D3-93AD-0000832EF44D}#1.1#0"; "FAST2005.ocx"
Begin VB.Form frmEncrypt
BorderStyle = 3 'Fixed Dialog
Caption = "Encryption"
ClientHeight = 2040
ClientLeft = 45
ClientTop = 330
ClientWidth = 5310
Icon = "Encrypt.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2040
ScaleWidth = 5310
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdDecrypt
Caption = "&Decrypt"
Height = 375
Left = 2760
TabIndex = 2
Top = 1500
Width = 1935
End
Begin VB.CommandButton cmdEncrypt
Caption = "&Encrypt"
Height = 375
Left = 600
TabIndex = 1
Top = 1500
Width = 1935
End
Begin VB.TextBox txtText
Height = 900
Left = 60
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Top = 360
Width = 5130
End
Begin FLWData.FWEncryption objEncryption
Left = 30
Top = 1500
_ExtentX = 820
_ExtentY = 820
End
Begin VB.Label Label1
Caption = "Enter the text to encrypt or deencrypt"
Height = 225
Left = 75
TabIndex = 3
Top = 120
Width = 2850
End
End
Attribute VB_Name = "frmEncrypt"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdDecrypt_Click()
txtText = objEncryption.Decode(txtText, 999999)
End Sub
Private Sub cmdEncrypt_Click()
txtText = objEncryption.Encode(txtText, 999999)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -