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.
我正在为 coderdojo 做一个项目,我想知道如何将输入到名为“depo”的文本框的值添加到名为“balance”的标签中,文本为 0 英镑。
我认为最好的方法是:
if depo.txt <> "" then balance.caption = "£" & depo.text
您使用文本框文本更改事件然后使用此代码。
Balance.Text = depo.Text;
在提问之前,您应该尝试搜索与您类似的问题。