Summary of Methods for Opening Forms and Browses
|
Method |
Description |
|
Loads a browse window into memory, but does not display the window until the .SHOW() method is used. Allows you to manipulate data in the browse before displaying the browse. | |
|
Opens a browse window. All records in the table will be displayed unless the browse layout definition specifies a filter. | |
|
Opens a browse window and applies an optional filter and order expression. Use this method when you want to restrict the records displayed in the browse. | |
|
Opens a browse window and applies an optional filter and order expression. | |
|
A "quick and dirty" way to open a form as a modal dialog window. You can also open a form as a modal dialog by using the "dialog" keyword in the .VIEW()and .VIEWQUERIED() methods. | |
|
Loads a form window into memory, but does not display the window until the .SHOW() method is used. Allows you to manipulate data in the form before displaying the form. | |
|
Opens a form window. All records in the table will be displayed unless the form layout definition specifies a filter. Use the "dialog" keyword to open the form as a modal dialog box. | |
|
Opens a form window and applies an optional filter and order expression. Use this method when you want to restrict the records displayed in the form. Use the "dialog" keyword to open the form as a modal dialog box. | |
|
Opens a form window and applies an optional filter and order expression. |
See Also