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