dim temporaryProduct as string
Dim value, convertValue, finalValue As Double
temporaryProduct = mathForm.valueBox.tostring ' I've tried with .text too
If Double.TryParse(temporaryProduct, value) Then 'Convert to double
convertValue = value
Else
MsgBox("Tryparse error")
Exit Sub
End If
每当我尝试转换文本框字符串时,我得到“Tryparse错误”,我真的不知道我做错了什么,我需要它是双倍的。
答案 0 :(得分:0)
尝试仅使用Text属性:
temporaryProduct = mathForm.valueBox.Text
如果在TextBox上使用ToString函数,可以得到如下内容:
System.Windows.Forms.TextBox,Text:???
这显然不是你可以使用的价值。