What form events are raised when Form.Requery is called?

This Microsoft article details the order of events that occur when a form is opened, focused, etc., but does not elaborate on what exactly happens when a form / subform is requested. The MSDN page for Form.Current confirms that this event occurs on update or request, but are there any other events firing as well?

+4


source to share


1 answer


Taken from here: https://msdn.microsoft.com/en-us/library/office/ff191903.aspx



The Requery method does one of the following:

  • Duplicates the request on which the form or control is based.
  • Displays any new or changed records, or removes deleted records from the table on which the form or control is based.
  • Updates to records are displayed based on any changes to the Filter property of the form.
-1


source







All Articles