📄 encrypt2.frm
字号:
VERSION 5.00
Begin VB.Form Encrypt2
BorderStyle = 1 'Fixed Single
Caption = "MD5加密"
ClientHeight = 3045
ClientLeft = 45
ClientTop = 435
ClientWidth = 6765
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3045
ScaleWidth = 6765
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton CmdExit
Caption = "退 出"
Height = 495
Left = 5040
TabIndex = 4
Top = 1680
Width = 1455
End
Begin VB.Frame Frame1
Height = 1335
Left = 480
TabIndex = 2
Top = 120
Width = 6015
Begin VB.OptionButton Opt
Caption = "other"
Height = 255
Index = 3
Left = 3600
TabIndex = 8
Top = 960
Width = 855
End
Begin VB.OptionButton Opt
Caption = "pay"
Height = 255
Index = 2
Left = 2520
TabIndex = 7
Top = 960
Width = 735
End
Begin VB.OptionButton Opt
Caption = "short"
Height = 255
Index = 0
Left = 240
TabIndex = 6
Top = 960
Value = -1 'True
Width = 855
End
Begin VB.OptionButton Opt
Caption = "long"
Height = 255
Index = 1
Left = 1320
TabIndex = 5
Top = 960
Width = 735
End
Begin VB.TextBox TxtS
Height = 375
Left = 240
TabIndex = 3
Top = 360
Width = 5655
End
End
Begin VB.CommandButton CmdCrypt
Caption = "加 密"
Height = 495
Left = 3360
TabIndex = 1
Top = 1680
Width = 1455
End
Begin VB.TextBox TxtMD5
Height = 375
Left = 480
TabIndex = 0
Top = 2400
Width = 6015
End
End
Attribute VB_Name = "Encrypt2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdCrypt_Click()
Dim i As Integer, op As String
For i = 0 To 3
If Opt(i).Value Then
op = Opt(i).Caption
Exit For
End If
Next
TxtMD5.Text = UCase(jk_MD5(TxtS.Text, op))
End Sub
Private Sub TxtF_GotFocus()
Opt(1).Value = True
End Sub
Private Sub CmdExit_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -