📄 曲面_彩色等值线f3.frm
字号:
VERSION 5.00
Begin VB.Form frmChange
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "重新给定参数"
ClientHeight = 1530
ClientLeft = 60
ClientTop = 450
ClientWidth = 2910
LinkTopic = "Form1"
ScaleHeight = 1530
ScaleWidth = 2910
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton cmdOK
Caption = "确定"
Height = 375
Left = 960
TabIndex = 4
Top = 960
Width = 975
End
Begin VB.TextBox txtY
Alignment = 2 'Center
Height = 270
Left = 1680
TabIndex = 3
Text = "Text2"
Top = 600
Width = 975
End
Begin VB.TextBox txtX
Alignment = 2 'Center
Height = 270
Left = 1680
TabIndex = 2
Text = "Text1"
Top = 240
Width = 975
End
Begin VB.Label lblY
Alignment = 1 'Right Justify
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "Y方向数据点间距"
ForeColor = &H80000008&
Height = 255
Left = 120
TabIndex = 1
Top = 600
Width = 1455
End
Begin VB.Label lblDX
Alignment = 1 'Right Justify
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "X方向数据点间距"
ForeColor = &H80000008&
Height = 255
Left = 120
TabIndex = 0
Top = 240
Width = 1455
End
End
Attribute VB_Name = "frmChange"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'改变参数
Option Explicit
'确定
Private Sub cmdOK_Click()
'重新取得参数值
DX = Val(txtX): DY = Val(txtY) '数据点间距
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -