TeeExport
TeeExport
It's stange: I save all the x-y couples for each series "by myself" with a very easy procedure and I don't notice that it was necessary to allocate memory for this action: with llops over series and number of points I never met any problems. Maybe you store the list in a listbox wich can be huge in some situations(?)
Could you tell me where the problem is comming from and how can I avoid it.
Thank you in advance for your answer.
JPM
Re: TeeExport
for information, I call the dialog box with th following procedure:
Code: Select all
procedure Exporter(var T ; var C : TChart);
var df, af : string;
begin
getdir(0,df);
if Go_to_Current_Scratch() then
begin
getdir(0,af);
TeeExport(TForm(T),C); // ,af);
end;
chdir(df);
end;
Re: TeeExport
Hello,
Are you pressing "Save..." or "Preview..."? If the later, the problem could be in notepad.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Are you pressing "Save..." or "Preview..."? If the later, the problem could be in notepad.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |