BrowseDataset(ObjectName: String[, Title: String])
Opens the dataset ObjectName in the Dataset Browser, a modal dialog box, for browsing. You can print a report from the Dataset Browser.
If a Title is specified, it will be displayed in the Dataset Browser. The Line and Character position that BrowseDataset is called from in the code is displayed in the Dataset Browser footer.
BrowseDataset function syntax has these named arguments:
Parameter |
Description |
Object Name |
Required. Object name of the dataset to browse. |
Title |
Options. Title to be displayed in the Dataset Browser. |
For example:
Customer = ExecuteSQL("Select * from ARCust")
BrowseDataset(Customer, "AR Customers")