How to handle MissingManifestResourceException

  • Thread starter Thread starter Stefan Christ
  • Start date Start date
S

Stefan Christ

I am using satelite assemblies to create a multilanguage application
using VB .NET. Whenever I try to access a resource within those
assemblies that does not exist, a MissingManifestResourceException
occuers. I cannot find any function of the ResourceManager to check
for existing resources, to prevent those exceptions. Is there another
way to handle this, except using try catch?

Best regards,
Stefan
 
I am using satelite assemblies to create a multilanguage application
using VB .NET. Whenever I try to access a resource within those
assemblies that does not exist, a MissingManifestResourceException
occuers. I cannot find any function of the ResourceManager to check
for existing resources, to prevent those exceptions. Is there another
way to handle this, except using try catch?

Best regards,
Stefan

Is your manifest file located in:
C:\Documents and Settings\ said:
Visual Studio 200x -> Projects)\<project name>l\bin\Debug or Release
folder?

or you want to check its existense inside your VB code?
 
Back
Top