System.Resources.MissingManifestResourceException while i want to switch from one form to another.

  • Thread starter Thread starter AimenMirza
  • Start date Start date
A

AimenMirza

Guest
Hello all.
I use VS 2013 and i made two forms. I added a button on first form and added code to switch to other from. The code is as follows:

this->Hide();
Loginpage^ option = gcnew Loginpage();
option->Show();

After i run it, click on the button, the exception is thrown saying:

An unhandled exception of type 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll

Additional information: Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Project.Loginpage.resources" was correctly embedded or linked into assembly "Project" at compile time, or that all the satellite assemblies required are loadable and fully signed.

Please help me I request. I can not find a single effective solution anywhere on the internet.

Continue reading...
 
Back
Top