📄 frmencrypt.frm
字号:
VERSION 5.00
Begin VB.Form frmEncrypt
Caption = "英文加密器"
ClientHeight = 6360
ClientLeft = 60
ClientTop = 375
ClientWidth = 6390
Icon = "frmEncrypt.frx":0000
LinkTopic = "Form1"
ScaleHeight = 6360
ScaleWidth = 6390
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
Height = 510
Index = 0
Left = 4800
TabIndex = 2
Top = 5040
Width = 1410
End
Begin VB.PictureBox StatusBar1
Align = 2 'Align Bottom
Height = 480
Left = 0
ScaleHeight = 420
ScaleWidth = 6330
TabIndex = 1
Top = 5880
Width = 6390
End
Begin VB.TextBox Text1
Height = 3780
Left = 120
MultiLine = -1 'True
TabIndex = 0
ToolTipText = "Type the String to be Encrypted Here."
Top = 840
Width = 6120
End
Begin VB.Label Label3
Caption = "为了软件的公开化,本软件未加壳,如发现有恶意反编译,将加壳保护!"
Height = 495
Left = 120
TabIndex = 6
Top = 5280
Width = 4335
End
Begin VB.Label Label2
Caption = "此软件为作者的工作成果,不要破解或反编译,否则将追究法律责任!"
Height = 255
Left = 120
TabIndex = 5
Top = 360
Width = 6255
End
Begin VB.Label Label1
Caption = "作者:赵宸 联系QQ:254012567"
Height = 255
Left = 840
TabIndex = 4
Top = 5040
Width = 3015
End
Begin VB.Label 加密
Caption = "说明:此加密器仅支持英文加密,如输入汉字加密,会导致不可预料的错误!"
Height = 375
Left = 120
TabIndex = 3
Top = 120
Width = 6135
End
Begin VB.Line Line2
X1 = 0
X2 = 6360
Y1 = 4800
Y2 = 4800
End
Begin VB.Line Line1
X1 = 0
X2 = 6360
Y1 = 675
Y2 = 675
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 MydsEncrypt As dsEncrypt
Private Sub Command1_Click(Index As Integer)
If Command1(0).Caption = "加密" Then
Command1(0).Caption = "解密"
Else
Command1(0).Caption = "加密"
End If
Text1.Text = MydsEncrypt.Encrypt(Text1.Text)
End Sub
Private Sub Form_Load()
Set MydsEncrypt = New dsEncrypt
MydsEncrypt.KeyString = ("KATHER")
Command1(0).Caption = "加密"
End Sub
Private Sub ImageList1_Click()
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -