📄 wizpage3.frm
字号:
VERSION 5.00
Begin VB.Form WizPage3
BorderStyle = 0 'None
ClientHeight = 3390
ClientLeft = 5205
ClientTop = 4245
ClientWidth = 4485
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "WizPage3.frx":0000
KeyPreview = -1 'True
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 226
ScaleMode = 3 'Pixel
ScaleWidth = 299
ShowInTaskbar = 0 'False
Begin VB.CheckBox Check1
Caption = "I Want To Go On"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 240
TabIndex = 3
Top = 2595
Value = 1 'Checked
Width = 2880
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Remove the mark from the checkbox below to test this."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 480
Index = 2
Left = 240
TabIndex = 2
Top = 1590
Width = 3615
WordWrap = -1 'True
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = $"WizPage3.frx":000C
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 915
Index = 1
Left = 240
TabIndex = 1
Top = 660
Width = 3615
WordWrap = -1 'True
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "You also need a way to validate the user's input."
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Index = 0
Left = 240
TabIndex = 0
Top = 300
Width = 4170
End
End
Attribute VB_Name = "WizPage3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public Sub CanGoFwd(ByVal NextStep As Integer, Cancel As Boolean)
On Error Resume Next
'// Let's see if we can continue...
If Check1.Value <> vbChecked Then
MsgBox "Not until you click the checkbox...."
Cancel = True
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -