📄 parameterform.frm
字号:
VERSION 5.00
Begin VB.Form ParameterForm
Caption = "请输入基本参数"
ClientHeight = 2085
ClientLeft = 60
ClientTop = 495
ClientWidth = 3930
LinkTopic = "Form1"
ScaleHeight = 2085
ScaleWidth = 3930
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton QuXiao
Caption = "退出"
Height = 495
Left = 1920
TabIndex = 3
Top = 1200
Width = 1335
End
Begin VB.CommandButton QueDing
Caption = "确定"
Height = 495
Left = 240
TabIndex = 2
Top = 1200
Width = 1335
End
Begin VB.TextBox Text5
Height = 375
Left = 1800
TabIndex = 1
Top = 360
Width = 1335
End
Begin VB.Label Label1
Caption = "材料系数"
Height = 375
Index = 4
Left = 360
TabIndex = 0
Top = 360
Width = 975
End
End
Attribute VB_Name = "ParameterForm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
If IsAddedPara = True Then Text5 = E1
End Sub
Private Sub Form_Unload(Cancel As Integer)
If E1 = 0 Then
IsAddedPara = False
HaveShowGraph = False
End If
End Sub
Private Sub QueDing_Click()
IsAddedPara = True
E1 = Val(Text5) '材料的弹性模量
Unload ParameterForm
End Sub
Private Sub QuXiao_Click()
Unload ParameterForm
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -