📄 wizpage2.frm
字号:
VERSION 5.00
Begin VB.Form WizPage2
BorderStyle = 0 'None
ClientHeight = 3390
ClientLeft = 5205
ClientTop = 4245
ClientWidth = 4485
ClipControls = 0 'False
ControlBox = 0 'False
Icon = "WizPage2.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.CommandButton Command1
Caption = "Go"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 300
Left = 1260
TabIndex = 2
Top = 975
Width = 720
End
Begin VB.TextBox Text1
Height = 285
Left = 315
TabIndex = 1
Top = 990
Width = 885
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "Enter a page number and click Go!"
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 = 1
Left = 300
TabIndex = 0
Top = 660
Width = 4380
WordWrap = -1 'True
End
End
Attribute VB_Name = "WizPage2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
If IsNumeric(Text1.Text) Then
If Text1.Text >= 1 And Text1.Text <= frmWizard.objWizard.StepCount Then
frmWizard.objWizard.StepTo Text1.Text
End If
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -