Bahry Yasin wrote: > Since 2 days am struggling and googling to solve this error > ///////////////////////////////////////////////////////////////////////// > [Error] WARNING. Duplicate resource(s): > [Error] Type 6 (STRING), ID 61254: > [Error] File c:\program files\borland\delphi7\Rx\Units\RXCConst.R32 > string kept: "Details" > [Error] File MyApplication.str string discarded: "SmallFormFrameBottom" > [...] > //////////////////////////////////////////////////////////////////////// > my application contains more than 100 forms and I work in this > applications since long time I never had this problem > I did not install any new components Its so happened suddenly and I use > the RX component also in my application I tried > to uninstall/install it without any success, I check in all the forms it > has correct {$R *.dfm} directive and all the units are added > to the project. > > Any hints or an Idea where to look ??
The error messages are telling you where to look. They say that you're including strings through two files, RXCConst.R32 and MyApplication.str. It's also telling you the string IDs assigned to those strings. My guess is that at least one of those files has manually assigned string IDs, and the other file has them automatically assigned by the compiler since they're resourcestrings. Since you have no control over the automatically assigned numbers, you'd have to change the manually assigned ones, and then change how you use them within your program. -- Rob _______________________________________________ Delphi mailing list -> Delphi@elists.org http://lists.elists.org/cgi-bin/mailman/listinfo/delphi