hi guyz
i want to open only this window

when i click the export select excel button this button is in action pane
and there is my code
void clicked()
{
Dialog _dialog;
DialogField _file;
ExcelSpreadsheetName XLSX;
;
//Prompt to import excel
_dialog = new Dialog("Please select the file to load");
//_dialog.addText("Select file:");
_file = _dialog.addField(ExtendedTypeStr("FilenameOpen"));
_dialog.filenameLookupFilter(["@SYS28576",XLSX,"@SYS100852","*.csv"]);
_dialog.filenameLookupTitle("Upload from EXCEL/CSV");
_dialog.run();
if (_dialog.closedOK())
{
info(_file.value() );
}
super();
}
can any buddy solve this issue
*This post is locked for comments
I have the same question (0)