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.
我的公司为每位新员工创建了一个欢迎包。在这个数据包中,我们的工作是列出他们的姓名、职位等。我们为此使用了一个模板;只是word文档中的一个页面,每个字段都有文本框。
是否可以向那些现有的文本框添加信息?如果没有,如何使用新文本框在文档中重新创建页面?这是第3页。
我不知道这是否可能,但如果是,请告诉我。
假设您的文本框被称为Textbox1. 要向其中添加文本,只需编写:
Textbox1
TextBox1.text = Textbox1.text & "String here"
或者,如果您想完全清除它,请选择
Textbox1.text = "String here"
希望这可以帮助!