parameterform.frm

来自「该程序是按照矩阵位移法的后处理法的基本原理和分析过程」· FRM 代码 · 共 70 行

FRM
70
字号
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 + =
减小字号Ctrl + -
显示快捷键?