📄 form10.frm
字号:
VERSION 5.00
Begin VB.Form Form10
BackColor = &H00C0C0C0&
Caption = "优化设计的结果:"
ClientHeight = 7455
ClientLeft = 60
ClientTop = 450
ClientWidth = 4425
LinkTopic = "Form10"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 7455
ScaleWidth = 4425
StartUpPosition = 1 '所有者中心
Begin VB.CommandButton Command2
BackColor = &H00FFC0C0&
Caption = "退出"
Height = 375
Left = 2880
Style = 1 'Graphical
TabIndex = 17
Top = 6960
Width = 1100
End
Begin VB.CommandButton Command1
BackColor = &H00FFC0C0&
Caption = "返回首页"
Height = 375
Left = 1560
Style = 1 'Graphical
TabIndex = 16
Top = 6960
Width = 1100
End
Begin VB.CommandButton Command3
BackColor = &H00FFC0C0&
Caption = "返回上一级"
Default = -1 'True
Height = 375
Left = 240
Style = 1 'Graphical
TabIndex = 15
Top = 6960
Width = 1095
End
Begin VB.PictureBox Picture1
AutoRedraw = -1 'True
BackColor = &H00C0C0C0&
Height = 3855
Left = 0
ScaleHeight = 3795
ScaleWidth = 4035
TabIndex = 14
Top = 3000
Width = 4095
End
Begin VB.TextBox Text1
Height = 270
Index = 4
Left = 1080
TabIndex = 13
Top = 2040
Width = 1215
End
Begin VB.TextBox Text1
Height = 270
Index = 3
Left = 3120
TabIndex = 12
Top = 1680
Width = 1215
End
Begin VB.TextBox Text1
Height = 270
Index = 2
Left = 1080
TabIndex = 11
Top = 1680
Width = 1215
End
Begin VB.TextBox Text1
Height = 270
Index = 1
Left = 3120
TabIndex = 10
Top = 1320
Width = 1215
End
Begin VB.TextBox Text1
Height = 270
Index = 0
Left = 1080
TabIndex = 7
Top = 1320
Width = 1215
End
Begin VB.Label Label5
BackColor = &H00C0C0C0&
Caption = "P-R方程"
Height = 255
Left = 2400
TabIndex = 9
Top = 1680
Width = 735
End
Begin VB.Label Label3
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "R-K方程"
Height = 180
Index = 1
Left = 2400
TabIndex = 8
Top = 1320
Width = 630
End
Begin VB.Label Label7
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "因此"
Height = 195
Left = 120
TabIndex = 6
Top = 2520
Width = 360
End
Begin VB.Label Label6
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "维里方程"
Height = 180
Left = 120
TabIndex = 5
Top = 2040
Width = 720
End
Begin VB.Label Label3
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "S-R-K方程"
Height = 180
Index = 2
Left = 120
TabIndex = 4
Top = 1680
Width = 810
End
Begin VB.Label Label3
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "范德法方程"
Height = 180
Index = 0
Left = 120
TabIndex = 3
Top = 1320
Width = 900
End
Begin VB.Label Label4
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "误差计算:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 120
TabIndex = 2
Top = 960
Width = 1050
End
Begin VB.Label Label2
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "实验值"
Height = 180
Left = 120
TabIndex = 1
Top = 600
Width = 540
End
Begin VB.Label Label1
AutoSize = -1 'True
BackColor = &H00C0C0C0&
Caption = "优化设计的结果:"
BeginProperty Font
Name = "楷体_GB2312"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 285
Left = 120
TabIndex = 0
Top = 120
Width = 2250
End
End
Attribute VB_Name = "Form10"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form4.Cls
Unload Me
Unload Form2
Unload Form3
Unload Form4
Unload Form5
Unload Form6
Unload FORM7
Unload Form8
Unload Form9
Form1.Show
End Sub
Private Sub Command2_Click()
Dim s%
s = MsgBox("您真的要退出吗?", vbOKCancel + vbQuestion, "程序")
If s = 1 Then
Unload Form1
Unload Form2
Unload Form3
Unload Form4
Unload Form5
Unload Form6
Unload FORM7
Unload Form8
Unload Form9
Unload Form10
End
End If
End Sub
Private Sub Command3_Click()
Unload Me
Form9.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -