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.
我有一个带有几个未绑定文本框的绑定表单。当整个表单转到下一条记录时,如何刷新或设置默认值?谢谢!(VBA 可接受)
只需为 Form_Current 事件添加处理程序:
Private Sub Form_Current() Dim default_value As String default_value = "0" Me.YourUnboundTextBox = default_value End Sub