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