Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在构建一个计算器应用程序,并且我有一个带有TextBox被调用的表单,txtVisor它具有属性NumbersOnly = true。我想获取它的内容(我已经知道txtVisor.Text:)并将其转换为 a Integer,将其乘以 12,然后将结果转换为 aString以将其设置txtVisor.Text为操作的结果。我怎么能这样做?
TextBox
txtVisor
NumbersOnly = true
txtVisor.Text
Integer
String
PS:我使用的是 NSBasic 7.0
txtVisor.Text = cstr(cint(txtVisor.Text)*12)
当前版本是 NS Basic/CE 8,这将使您在部署应用程序时更加轻松。