A family of Microsoft relational database management systems designed for ease of use.
I'm afraid I don't really understand the setup.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a main form that calls a second form(popup). On the first form, when i change record and call the main form that is still open, it does not update the second form which has a text box that points to a query. When I click on F5 on my keyboard, it updates the form. How can i update the second form?
this is the code I have currently.
Private Sub EMAILGUID_DblClick(Cancel As Integer)
...
...
DoCmd.OpenForm "frm_EmailViewer", acNormal
Forms![frm_EmailViewer].Form.Refresh
...
...
A family of Microsoft relational database management systems designed for ease of use.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
I'm afraid I don't really understand the setup.
What's strange is that the subform in the second form refreshes but the text box in the second form does not refresh.
didn't work, only refreshes when i hit F5 on my keyboard.
didn't work...still not updating the textbox in the second form.
Perhaps in the On Current event of the main form
Private Sub Form_Current()
If CurrentProject.AllForms("frm_EmailViewer").IsLoaded Then
Forms!frm_EmailViewer.Refresh
End If
End Sub