skmMenu

G

Guest

Please
I have downladed skmMenu source code for ASP.NET application and I have made skmmenu.dll and I got menu control. After that I put menu control on my webform, do some design changes and then I start my application. After that it throws me this error in browser

Could not find any resources appropriate for the specified culture (or the neutral culture) in the given assembly. Make sure "Menu.resources" was correctly embedded or linked into assembly "menucontrol". baseName: Menu locationInfo: skmMenu.Menu resource file name: Menu.resources assembly: menucontrol, Version=2.0.1494.2781, Culture=neutral, PublicKeyToken=null

What can I do? Please help
Thank you
 
M

Mack D. Male [MVP]

Hi,

I have run into this problem a number of times with various libraries.
Somewhere in the skmMenu code, a ResourceManager is trying to load from
Menu.resources, but that is not the correct name. Here is something you can
do to figure out where it should be loading from:

1) Open the VS.NET Command Prompt
2) Type "ildasm"
3) Open the skmmenu.dll using the File->Open dialog.
4) Double click on the MANIFEST item in the list (with red arrow).

That will open up the manifest for you. If you scroll to the bottom of this
window, you will see (about 10 lines from the bottom or so) a line that
looks like this:

..mresource public XXX.resources
{
}

What you want to do is find out what the XXX.resources is, and change the
code from Menu.resources to XXX.resources. Be sure to search through all the
souce files to ensure you don't miss a line. This has usually worked for me
to solve the problem.

Good luck!

Mack D. Male
MVP Visual Developer - Academic

djozy said:
Please,
I have downladed skmMenu source code for ASP.NET application and I have
made skmmenu.dll and I got menu control. After that I put menu control on my
webform, do some design changes and then I start my application. After that
it throws me this error in browser:
~
Could not find any resources appropriate for the specified culture (or the
neutral culture) in the given assembly. Make sure "Menu.resources" was
correctly embedded or linked into assembly "menucontrol". baseName: Menu
locationInfo: skmMenu.Menu resource file name: Menu.resources assembly:
menucontrol, Version=2.0.1494.2781, Culture=neutral, PublicKeyToken=null
 

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