How to Handle System.Resources.MissingManifestResourceException in c#.net

P

Prashant M

iam generating am exe from o/p of the c# application. I mean generating
seperate exe dynamically from an exe of one application.

suppose o/p of an exe generated for application1 is a form1. then when i
click a button on form1 which was generated by tht original exe i should get
another exe generated.

Now iam able to that using compiler parameters. But when i tried the same
concept on my project iam getting an error saying that :


Unhandled Exception: System.Resources.MissingManifestResourceException:
Could not find any resources appropriate for the specified culture or the
neutral culture. Make sure "EBBOK_EXSAMPLE.Form1.resources" was correctly
embedded or linked into assembly "sample" at compile time, or that all the
satellite assemblies required are loadable and fully signed.
at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo
culture, Boolean createIfNotExists, Boolean tryParents)
at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo
culture, Boolean createIfNotExists, Boolean tryParents)
at System.Resources.ResourceManager.InternalGetResourceSet(CultureInfo
culture, Boolean createIfNotExists, Boolean tryParents)
at System.Resources.ResourceManager.GetObject(String name, CultureInfo
culture, Boolean wrapUnmanagedMemStream)
at System.Resources.ResourceManager.GetObject(String name)
at EBBOK_EXSAMPLE.Form1.InitializeComponent()
at EBBOK_EXSAMPLE.Form1..ctor()
at EBBOK_EXSAMPLE.Program.Main()


please help me out how to handle this exception.

Thanks
Prashanth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top