📄 frmcodedecode.frm
字号:
VERSION 5.00
Begin VB.Form frmCodeDecode
Caption = "加密/解密 "
ClientHeight = 2430
ClientLeft = 8400
ClientTop = 5340
ClientWidth = 2055
ControlBox = 0 'False
LinkTopic = "Form1"
ScaleHeight = 2430
ScaleWidth = 2055
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
End
Attribute VB_Name = "frmCodeDecode"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'#########################################################################
'★★★★★ http://www.cnpopsoft.com [华普软件] ★★★★★
'★★★★★ VB专业论文与源码荟萃 ★★★★★
'#########################################################################
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -