hi,
while migrating from 2003 to vs 2005 my application produced the following error:
Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "gui.resources" was correctly embedded or linked into assembly "ASPNET.r5_gxspi" at compile time, or that all the satellite assemblies required are loadable and fully signed.
the code is fune' it calls a ligitimate resource key using the resourcemanager and the
System.Reflection.Assembly.GetExecutingAssembly()
Dim rm As ResourceManager = New ResourceManager("gui", System.Reflection.Assembly.GetExecutingAssembly())
Application("rm") = rm
Thread.CurrentThread.CurrentUICulture = New Globalization.CultureInfo("en-GB")
this is the object init, the assemblies are compiled and present in the bin folder + referenced in the project, what am i doing wrong?
i have being stuck for 4 days with this issue with no proper solution. the msdn is saying something about signing the resource files, is it mandatory?
please please help....
Be Real