cant for the love of God remember or find...
how does one change a text1.text into a numeric value?
tnx
Printable View
cant for the love of God remember or find...
how does one change a text1.text into a numeric value?
tnx
In addition to Val, you can also use:VB Code:
Dim intHack As Integer intHack = Val(Text1.Text)
CInt - Convert to Integer
Clng - Convert to Long
CSng - Convert to Single
CDbl - Convert to Double
sweet again...
tnx man, for a swift one!