📄 frmencrypt.frm
字号:
VERSION 5.00
Begin VB.Form frmEncrypt
Caption = "Encryption Form"
ClientHeight = 5745
ClientLeft = 60
ClientTop = 375
ClientWidth = 6075
Icon = "frmEncrypt.frx":0000
LinkTopic = "Form1"
ScaleHeight = 5745
ScaleWidth = 6075
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command1
Height = 510
Index = 0
Left = 4365
TabIndex = 2
Top = 4680
Width = 1410
End
Begin VB.PictureBox StatusBar1
Align = 2 'Align Bottom
Height = 480
Left = 0
ScaleHeight = 420
ScaleWidth = 6015
TabIndex = 1
Top = 5265
Width = 6075
End
Begin VB.TextBox Text1
Height = 3780
Left = 90
MultiLine = -1 'True
TabIndex = 0
ToolTipText = "Type the String to be Encrypted Here."
Top = 810
Width = 5880
End
Begin VB.PictureBox ImageList1
BackColor = &H80000005&
Height = 480
Left = 5445
ScaleHeight = 420
ScaleWidth = 1140
TabIndex = 3
Top = 5760
Width = 1200
End
Begin VB.Line Line2
X1 = 0
X2 = 6075
Y1 = 4590
Y2 = 4590
End
Begin VB.Line Line1
X1 = 0
X2 = 6075
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 = "&Encrypt" Then
Command1(0).Caption = "U&nEncrypt"
Else
Command1(0).Caption = "&Encrypt"
End If
Text1.Text = MydsEncrypt.Encrypt(Text1.Text)
End Sub
Private Sub Form_Load()
Set MydsEncrypt = New dsEncrypt
MydsEncrypt.KeyString = ("KATHER")
Command1(0).Caption = "&Encrypt"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -