📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 5955
ClientLeft = 60
ClientTop = 450
ClientWidth = 8535
LinkTopic = "Form1"
ScaleHeight = 5955
ScaleWidth = 8535
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command2
Caption = "解密"
Height = 495
Left = 6840
TabIndex = 2
Top = 5040
Width = 1455
End
Begin VB.TextBox Text1
Height = 375
Left = 4080
TabIndex = 1
Top = 4200
Width = 4335
End
Begin VB.CommandButton Command1
Caption = "加密"
Height = 495
Left = 4320
TabIndex = 0
Top = 5040
Width = 1455
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.Text = encrypt(Text1.Text)
End Sub
Private Sub Command2_Click()
Text1.Text = decrypt(Text1.Text)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -