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 - SaveDialog of TeeExport Editor doesn't list the Data extensions files (C++ Builder)
Summary: SaveDialog of TeeExport Editor doesn't list the Data extensions files (C++ Bu...
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Editors (show other bugs)
Version: 140220
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-24 09:38 EDT by sandra pazos
Modified: 2014-04-24 09:38 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.