将字符串转换为整数,反之亦然

发布于 2024-09-05 05:12:11 字数 313 浏览 3 评论 0原文

我正在构建一个计算器应用程序,并且有一个表单,其中有一个名为 txtVisorTextBox,它具有属性 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒废 2024-09-12 05:12:11

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文