|
BROWSE (Short name: BRO)
|
|
| WINDOW_STATE value
|
|
|
| To setup Data Browser window state with the following supported values:
|
|
|
| MAXIMIZED - show maximized
|
| NORMAL - show normalized
|
| MINIMIZED - show minimized
|
|
|
| CAPTION value
|
|
|
| To change Data Browser window caption.
|
|
|
| LOCK nnn
|
|
|
| To lock a number of columns in Data Browser window.
|
|
|
| ROWVIEW
|
|
|
| To open Data Browser window in "View as Row" mode.
|
|
|
| READONLY value
|
|
|
| To open Data Browser window in Read-Only mode. (Default is OFF)
|
|
|
| · | ON
|
| · | OFF
|
|
|
| MODAL value
|
|
|
| To open Data Browser as modal/non-modal window. (Default is ON)
|
|
|
| · | ON
|
| · | OFF
|
|
|
| EXPORTRESULT value
|
|
|
| To enable/disable the "Export Result to->" menu item. (Default is ON)
|
|
|
| · | ON
|
| · | OFF
|
|
|
| SAVERESULT value
|
|
|
| To enable/disable the "Save Data As->" menu item. (Default is ON)
|
|
|
| · | ON
|
| · | OFF
|
|
|
| PRINTDATA value
|
|
|
| To enable/disable the "Print Data" menu item. (Default is ON)
|
|
|
| · | ON
|
| · | OFF
|
|
|
| The following command displays all columns in the transmastertable and sorts the rows by the customer identification numbers contained in custid column.
|
|
|
| BROWSE * FROM transmaster ORDER BY custid
|
| The following command displays the custid, company, custaddress, custcity, custstate, and custzip columns in the customer table. Only the rows where the customer identification is equal to 100 are displayed.
|
|
|
| BROWSE custid, company, custaddress, custcity, custstate, custzip FROM customer WHERE custid = 100
|
|
|
| The following command displays the custid column and restricts editing. Do not place a delimiter, such as a comma or a space, between options prefaced with an equal sign when you are building a command.
|
|
|
| BROWSE custid=read, company, custaddress, custcity, custstate, custzip FROM customer WHERE custid = 100
|
|
|
| The following command open all records for the Customer table with a maximized Data Browser window and "Customer Data" as the caption.
|
|
|
| BROWSE ALL FROM customer OPTION WINDOW_STATE MAXIMIZED|CAPTION Customer Data
|
|
|
| The following will start the Data Browser for custid 125, displaying the data as a single row in read only mode.
|
| BROWSE ALL FROM customer WHERE custid = 125 OPTION WINDOW_STATE NORMAL|ROWVIEW|READONLY ON
|