Joe Echavarria wrote: > Hello, > I am trying to compile my program and i am getting this errror : > File not found: 'ARROWGLYPH.RES', it was working fine before and > I haven't changed any information in the environment options > what can i do to find the problem and fix it ?, it could > something of a library but i really don't know what to do.
Did you introduce any new components recently? The error is indicative that the compiler can't locate a resource (.RES) file that your project is importing. I'd suggest doing a "Find in Files" on your source tree looking for "ARROWGLYPH.RES" that should turn up which unit(s) are looking for that file. That should also tell you which library or component set it is, at which point you can determine if the file exists. If it does exist then you need to add its path to the Library search path or move it where it can be found; or, if it does not exist, re-install the component or library from your source disks or archive to see if it's included and then contact the manufacturer if it's not there. Stephen Posey [EMAIL PROTECTED] _______________________________________________ Delphi mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi

