I'm getting the error:
Two output file names resolved to the same output path: "obj\Debug\Project1.Form1.resources"
This error comes while trying to run a windows form application I created. Some searches showed me that this occurs due to the occurrence of two .resx files. I have two .resx files in my application. Also I have two forms in my application. I created the second form by copying the first form and renaming and modifying the copy. The two .resx files are form1.resx and form2.resx. How can I remove this error?
Though I don't know why will you do it, you can use these instructions to copy properly a form. It is not recommended. It is better to inherit or use user control. But if you must:
InitializeComponent
method from form1.designer
to the new formInitializeComponent
. form1
to the new form, make sure to fix the constructorEDIT
When someone pushes the change page button you can do:
private void button1_Click(object sender, EventArgs e)
{
Form2 frm = new Form2(NextPage);
frm.Show();
this.Hide();
}
Now this is very basic syntax. you might want to have a master form that holds all the forms so you won't create over and over new forms.
The design is up to you. this example will give you basics on how to open and close forms.
If you don't need the resx files you can just delete them and this problem goes away.
This error may also occur if you use Windows10 and you have localiztion resources for CR-Cyrl-CS, CR-Latn-CS cultures. Windows10 doesn't support them any more.
I encountered this problem while making a form application. When I changed the form name, the compilation problem arose due to the same error. In Visual Studio, I saw that a .resx file with 2 different names was created in the sub-tabs of the form that I changed its name in the Solution Explorer section. I deleted oldname.resx and it was fixed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With