|
发表于 2020-6-21 23:30:02
|
显示全部楼层
偶的方法,这样比较简单快速,我就是这样进行窗体之间的数据传送的,采用全局变量如果你定义的参数比较多的话就比较麻烦,这样能比较清晰的对应上去!
''输入参数
Private Sub MnuInput_Click()
With MSHFlexGrid1
''产品型号以及行程说明
Form1.Text84.Text = .TextMatrix(1, 2)
Form1.Text81.Text = .TextMatrix(2, 2)
Form1.Text20.Text = .TextMatrix(3, 2)
Form1.Text82.Text = .TextMatrix(4, 2)
Form1.Text83.Text = .TextMatrix(5, 2)
''起输入参数
Form1.Text1.Text = .TextMatrix(8, 2)
Form1.Text2.Text = .TextMatrix(9, 2)
Form1.Text3.Text = .TextMatrix(10, 2)
Form1.Text4.Text = .TextMatrix(11, 2)
Form1.Text5.Text = .TextMatrix(12, 2)
Form1.Text6.Text = .TextMatrix(13, 2)
Form1.Text7.Text = .TextMatrix(14, 2)
Form1.Text8.Text = .TextMatrix(15, 2)
Form1.Text9.Text = .TextMatrix(16, 2)
''斗的输入参数
''力学参数输入
End With |
|