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と呼ばれるフォームがあります。私はそれの内容を取得したい(私はすでに知っている:)そしてそれを に変換して、それを12倍し、結果を に変換してを操作の結果として設定したい。どうすればこれを行うことができますか?txtVisorNumbersOnly = truetxtVisor.TextIntegerStringtxtVisor.Text
TextBox
txtVisor
NumbersOnly = true
txtVisor.Text
Integer
String
PS: NSBasic 7.0 を使用しています
txtVisor.Text = cstr(cint(txtVisor.Text)* 12)
現在のバージョンはNSBasic/ CE 8であり、アプリをデプロイするときに非常に簡単になります。