Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 740

Summary: SaveDialog of TeeExport Editor doesn't list the Data extensions files (C++ Builder)
Product: VCL TeeChart Reporter: sandra pazos <sandra>
Component: EditorsAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement    
Priority: ---    
Version: 140220   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description sandra pazos 2014-04-24 09:38:21 EDT
SaveDialog of TeeExportEditor doesn't list the Data extensions files when is worked with a custom TeeExportForm in C++ Builder. See the below code in c++ Builder:

void __fastcall TForm1::Button1Click(TObject *Sender)
{      TTeeExportForm* myExportForm = new TTeeExportForm(this);
      myExportForm->ExportPanel=Chart1;
      myExportForm->InitDir = ' ';
      myExportForm->ShowModal();
}

Seems the problem is caused because the DataFilter variable is empty at the moment to show the Editor. The same code works fine in Delphi.