Resources compile error

  • Thread starter Thread starter Adam Honek
  • Start date Start date
A

Adam Honek

Hello,

I'm getting the following compile error and I'm not sure I know why it's
occuring.

There is no Form1.resx in the project's folder so why is it somehow thinking
there is?

Error:
Resources 'AboutAdamHonekChatterClientForm.resx' and 'Form1.resx' have the
same manifest resource name
'AdamHonekChatterClient.AboutAdamHonekChatterClientForm.resources'.

Many thanks,
Adam Honek
 
Maybe open the project file with a text editor like Wordpad and search for
the string "Form1" to see if there really is a reference to it in your
project?

Tom
 
I've just done this and no luck.

It's referencing a file that does'nt even exist.

Adam
 
All I can say is that I had a similar problem in that a form I had created
(and then thought was deleted) kept showing up in references. I found it in
the project file and deleted it. Why no try a 'grep' string search of your
project folder and subfolders for the string 'form1'.\

For example,

grep -i -d form1 c:\MyProject

The "-i" says "ignore case" and the "-d" says "do all subdirectories".

Otherwise try the feeble Windows search thingy.

Tom
 
Back
Top