Search found 7 matches

by jredoc
Wed Mar 07, 2012 3:17 am
Forum: VCL
Topic: Duplicate resources
Replies: 15
Views: 30857

Re: Duplicate resources

Hello Yeray Yes, I also find the error messages curious. It is because of these duplication messages that I a) uninstalled both Report Builder 4.03 and TeeChart Pro 2011.04.41118 b) after uninstalling I then removed all references to Tee*.* that pertained to Tee Chart prior to reinstalling both prog...
by jredoc
Fri Mar 02, 2012 7:50 pm
Forum: VCL
Topic: Duplicate resources
Replies: 15
Views: 30857

Re: Duplicate resources

Yes, they are actually warnings and not errors. I misspoke.

Having not had these warnings prior to Delphi XE2, I am concerned about the etiology of the warning and a possible mechanism to eliminate them.

TIA

John
by jredoc
Fri Mar 02, 2012 1:45 pm
Forum: VCL
Topic: Duplicate resources
Replies: 15
Views: 30857

Re: Duplicate resources

Hello After uninstalling TeeChart Pro, removing all references to Tee*.* that applied to TeeChart and then reinstalling TeeChart Pro I now have 5 references to TeeResou.res. - c:\delphi\components\TeeChart\Delphi16.ios\lib - c:\delphi\components\TeeChart\Delphi16.osx32lib - c:\delphi\components\TeeC...
by jredoc
Wed Feb 29, 2012 4:19 am
Forum: VCL
Topic: Duplicate resources
Replies: 15
Views: 30857

Re: Duplicate resources

Hello In continuing to investigate this issue of duplicate resources, I have a) uninstalled TeeChart Pro and RBuilder and b) searched for all innstances of tee*.* and deleted all references. c) reinstalled TeeChart, binary file first and then the source file d) reinstalled RBuilder Duplicate resourc...
by jredoc
Mon Feb 27, 2012 10:33 pm
Forum: VCL
Topic: Duplicate resources
Replies: 15
Views: 30857

Duplicate resources

Hello In moving from Delphi XE to Delphi XE2 (both in a Windows 7 64 bit OS), I am now receiving multiple duplicate resource errors for TeeResou.res. [DCC Hint] H2161 Warning: Duplicate resource: Type 2 (BITMAP), ID TBUTTONCOLOR; File C:\Delphi\Components\TeeChart\Delphi16.win32\Lib\TeeResou.res res...
by jredoc
Mon Feb 27, 2012 9:52 pm
Forum: VCL
Topic: TeeCreateMetaFile
Replies: 1
Views: 4440

Re: TeeCreateMetaFile

Interestingly, the solution was to eliminate the Metafile component entirely and substitute a) for b) a) ppImage1.Picture.Metafile.Assign(ChartMoveAv.Chart1.TeeCreateMetafile(True, Rect1)); b) ppImage1.Picture.Metafile.Assign(MetaFile1); I do not unfortunately, have an explanation as to why the orig...
by jredoc
Sat Feb 25, 2012 6:12 am
Forum: VCL
Topic: TeeCreateMetaFile
Replies: 1
Views: 4440

TeeCreateMetaFile

Hello The following code excerpt worked fine in a Delphi XE in Windows 7 64 bit development environment. procedure TDataHygiene.ExecuteHygieneReport1; var MetaFile1: TMetaFile; // Requires graphics unit Rect1: TRect; begin ChartMoveAv := TChartMoveAv.Create(Application); Rect1.Left := 0; Rect1.Top :...