hi,
how can i reload a form after updating of the fields? because i loaded a form, but after updating the forms, it gives me problems, the field just don´t display.
anyone to help?
aqm
hi,
in the runtime iam updating a table linked to a subforms. the subform is on the main form. how can i make that data appear on the subform without exiting the forms?
how can put in code shift+F9?
thanks.
aqm
For the "Update" problem, you have 2 options.
Either
1. In the on-timer event of the form, enter a requery and refresh eg:
Private Sub Form_Timer()
Me.Requery
Me.Refresh
End Sub
OR
2. Ensure that the Requery and Refresh commands are executed following any changes (Eg. in the AfterUpdate event) of all controls on the form.
PS. Ensure that you test the system before it goes live. these problems (if not resolved early) can cause big headaches later on in the development process.
i don´t want it to be a command button. i want to put in in code so that the user will not need to press any button to upadate. what is the code of shift+f9, please?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.