FormDataSource.executeQuery Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Executes the data source query and displays the records that are retrieved.
public:
virtual void executeQuery();
public virtual void executeQuery ();
abstract member executeQuery : unit -> unit
override this.executeQuery : unit -> unit
Public Overridable Sub executeQuery ()
Remarks
This method is executed when a form is opened for data display. The executeQuery method can be overridden on a form data source by right-clicking the Methods node under the data source, pointing to Override Method, and then clicking executeQuery.
The following example executes a data source query in response to a tab page activation event.
public void pageActivated()
{
monday_ds.executeQuery();
super();
}