📄 form3.frm
字号:
VERSION 5.00
Begin VB.Form Form3
BorderStyle = 0 'None
Caption = "输入数列"
ClientHeight = 2445
ClientLeft = 0
ClientTop = 0
ClientWidth = 7830
LinkTopic = "Form3"
MaxButton = 0 'False
ScaleHeight = 2445
ScaleWidth = 7830
StartUpPosition = 2 '屏幕中心
Begin 排序算法演示系统.jcForms jcForms1
Align = 1 'Align Top
Height = 2445
Left = 0
TabIndex = 0
Top = 0
Width = 7830
_ExtentX = 13811
_ExtentY = 4313
ThemeColor = 1
MaxButton = 0 'False
MinButton = 0 'False
CustomBackColor = 15591915
Style = 2
Begin 排序算法演示系统.isButton isButton1
Height = 495
Left = 3240
TabIndex = 11
Top = 1680
Width = 1335
_ExtentX = 2355
_ExtentY = 873
Style = 4
Caption = "确定"
Tooltiptitle = ""
ToolTipIcon = 0
ToolTipType = 1
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Verdana"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 555
Index = 1
Left = 360
TabIndex = 10
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 2
Left = 1080
TabIndex = 9
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 3
Left = 1800
TabIndex = 8
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 4
Left = 2520
TabIndex = 7
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 5
Left = 3240
TabIndex = 6
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 6
Left = 3960
TabIndex = 5
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 7
Left = 4680
TabIndex = 4
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 8
Left = 5400
TabIndex = 3
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 9
Left = 6120
TabIndex = 2
Text = "000"
Top = 840
Width = 615
End
Begin VB.TextBox Text1
Appearance = 0 'Flat
BackColor = &H00FFFFFF&
BeginProperty Font
Name = "Arial Narrow"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 555
Index = 10
Left = 6840
TabIndex = 1
Text = "000"
Top = 840
Width = 615
End
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
For i = 1 To 10 Step 1
Text1(i).Text = Form1.Label1(i).Caption
Next i
End Sub
Private Sub isButton1_Click()
For i = 1 To 10 Step 1
Form1.Label1(i).Caption = Val(Text1(i).Text)
Next i
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -