标签: excel vba excel-vba
我想要一些代码可以:
选取已在用户表单的文本框中输入的数字。
文本框名为Height
Height
由于
答案 0 :(得分:0)
您可以像这样从文本框中获取值。
Dim heightInput = Height.text
但是,在假设它是有效数字之前,您应该进行一些验证。
,例如
Dim validHeight as Integer If int.TryParse(heightInput, validHeight) then ' Put code here End If
了解更多 http://www.homeandlearn.co.uk/NET/nets1p14.html