Search found 6 matches

by Dge
Fri Aug 14, 2009 2:28 pm
Forum: VCL
Topic: Export data in test or xls format
Replies: 1
Views: 2518

Export data in test or xls format

Hi, When I try to save data (a lot of series with addXY method), with this code: with TSeriesDataXLS.Create(PhysicalChart,nil) do try includeindex:=false; IncludeHeader := True; IncludeLabels := false; SaveToFile('bidon.xls'); finally Free; end; with TSeriesDataText.Create(PhysicalChart,nil) do try ...
by Dge
Wed Sep 21, 2005 8:43 am
Forum: VCL
Topic: LoadChartFromStream failed in binary mode
Replies: 8
Views: 7864

Hi Narcis,

Thank you for yours answer. Waiting for the new version i use the text format.

Best regards

Dge
by Dge
Sat Sep 17, 2005 5:38 pm
Forum: VCL
Topic: LoadChartFromStream failed in binary mode
Replies: 8
Views: 7864

Hi Narcis,
I post you a tiny project to fix the problem.
Best reagards

Dge
by Dge
Wed Sep 14, 2005 9:21 am
Forum: VCL
Topic: LoadChartFromStream failed in binary mode
Replies: 8
Views: 7864

Hi Narcis,

Thank you for your FreeAllseries instead of RemoveAllSeries, it solve the exception problem in a cycle load/save). But the binary problem raise again.

Best regards

Dge
by Dge
Wed Sep 14, 2005 9:11 am
Forum: VCL
Topic: LoadChartFromStream failed in binary mode
Replies: 8
Views: 7864

Hi Narcis, When I save ONE chart in ONE file there is no problem. If I try to save TWO charts in ONE file with streaming process in binary mode, the file is "invalid" but in text mode it is right. It seems that the separation between series data in the first chart and the start of the second chart i...
by Dge
Fri Sep 09, 2005 10:19 am
Forum: VCL
Topic: LoadChartFromStream failed in binary mode
Replies: 8
Views: 7864

LoadChartFromStream failed in binary mode

Hi, I try to save two differents charts in a FileStream and Load these two charts with the same FileStream. Savin g process: procedure TForm1.SaveStreamBitBtnClick(Sender: TObject); var theStream:TFileStream; begin OpenDialog1.DefaultExt:='Tee'; OpenDialog1.FilterIndex:=1; OpenDialog1.Filter:='Files...