f$DialogExcelExport
f$DialogExcelExport
Export the content of a table in a dialog to an Excel file. In this export, the text presented in the cells is exported. When using comboboxes, the presented text is exported and not the internal values.
The name of the Excel file including path must be specified.
Please note that, when entering a path in the file name, the character "\" must be entered twice ("\\").
Syntax: | Status = f$DialogExcelExport (DialogID , Gridname , Filename ) | ||
| Argument | Type | Meaning |
| DialogID | Integer | The dialog ID returned by f$DialogOpen |
| Gridname | String | Name of the table to be exported in the dialog |
| File name | String | Name of the file to be created includingpath. |
Example: | Status = f$DialogExcelExport (DialogID , 'TAB_Tasks' , 'c:\\temp\\tasks.xls' ) | ||