frmcodedecode.frm
来自「里面有二十一种加密的算法,很好用的哦,大家一定要多多下载啊」· FRM 代码 · 共 73 行
FRM
73 行
VERSION 5.00
Begin VB.Form frmCodeDecode
Caption = "加密/解密 "
ClientHeight = 3015
ClientLeft = 60
ClientTop = 345
ClientWidth = 2055
ControlBox = 0 'False
LinkTopic = "Form1"
ScaleHeight = 3015
ScaleWidth = 2055
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton btnCancel
Caption = "取消"
Height = 495
Left = 360
TabIndex = 2
Top = 1680
Width = 1215
End
Begin VB.CommandButton btnDecode
Caption = "解密"
Height = 495
Left = 360
TabIndex = 1
Top = 960
Width = 1215
End
Begin VB.CommandButton btnCode
Caption = "加密"
Height = 495
Left = 360
TabIndex = 0
Top = 240
Width = 1215
End
Begin VB.Label Label1
Caption = "海阔天空收集整理 http://www.play78.com"
Height = 465
Left = 60
TabIndex = 3
Top = 2310
Width = 1935
End
End
Attribute VB_Name = "frmCodeDecode"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub btnCancel_Click()
CompDecomp = 0
Me.Hide
End Sub
Private Sub btnCode_Click()
CompDecomp = 1
Me.Hide
End Sub
Private Sub btnDecode_Click()
CompDecomp = 2
Me.Hide
End Sub
Private Sub Form_Load()
CompDecomp = 0
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?