将字符串转换为整数,反之亦然
我正在构建一个计算器应用程序,并且有一个表单,其中有一个名为 txtVisor
的 TextBox
,它具有属性 NumbersOnly = true
。我想获取它的内容(我已经知道:txtVisor.Text
)并将其转换为Integer
,将其乘以12,然后转换结果转换为 String
以将 txtVisor.Text
设置为操作结果。我怎么能这样做呢?
PS:我使用的是 NSBasic 7.0
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
txtVisor.Text = cstr( cint(txtVisor.Text)*12 )
当前版本是 NS Basic/CE 8,这将使您在部署应用程序时变得更加轻松。
txtVisor.Text = cstr( cint(txtVisor.Text)*12 )
The current version is NS Basic/CE 8, which will make your life much easier when it comes time to deploy your app.