📄 form2.frm
字号:
VERSION 5.00
Begin VB.Form Form2
BackColor = &H00C0E0FF&
Caption = "欢迎使用本演示程序!"
ClientHeight = 5940
ClientLeft = 60
ClientTop = 345
ClientWidth = 9705
LinkMode = 1 'Source
LinkTopic = "Form2"
ScaleHeight = 5940
ScaleWidth = 9705
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command2
Caption = "退出演示"
BeginProperty Font
Name = "楷体_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 5400
TabIndex = 2
Top = 4440
Width = 1575
End
Begin VB.CommandButton Command1
Caption = "开始演示"
BeginProperty Font
Name = "楷体_GB2312"
Size = 14.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 735
Left = 2520
TabIndex = 1
Top = 4440
Width = 1575
End
Begin VB.Label Label1
BackColor = &H00FFFFFF&
Caption = " 扩展置换和S盒代替 过程演示 "
BeginProperty Font
Name = "华文彩云"
Size = 27.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000040C0&
Height = 2775
Left = 2160
TabIndex = 0
Top = 960
Width = 5295
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command2_Click()
Dim strMsg As String
Dim strTitle As String
Dim IngStyle As Long
Dim intResponse As Integer
strMsg = "确定取消演示?"
IngStyle = vbYesNo + vbExclamation
strTitle = " 退出提示 "
intResponse = MsgBox(strMsg, IngStyle, strTitle)
If intResponse = vbYes Then End
End Sub
Private Sub Command1_Click()
Form1.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -