Convert String To Integer And Vice-Versa
Posted
by Nathan Campos
on Stack Overflow
See other posts from Stack Overflow
or by Nathan Campos
Published on 2010-06-10T01:08:21Z
Indexed on
2010/06/10
1:12 UTC
Read the original article
Hit count: 300
I'm building a calculator application, and I have a Form, with a TextBox
called txtVisor
, that has the property NumbersOnly = true
. I want to get the content of it(that I already know: txtVisor.Text
) and convert it into a Integer
, to do multiply it by 12, then convert the result into a String
to set the txtVisor.Text
as the result of the operation. How could I do this?
PS: I'm using NSBasic 7.0
© Stack Overflow or respective owner