Hi,

I've been trying to use resources in VB.NET for the past 4 hours without any luck...

I added a resource file to my project, called iConvert.resx, then I added a string to it:

name: test, value: eureka!, comment: (null), type: String, mimetype: (null)

Then, using this code:

VB Code:
  1. Module MMain
  2.     Public gresMan As Resources.ResourceManager = New Resources.ResourceManager("iConvert", System.Reflection.Assembly.GetAssembly(GetType(MMain)))
  3.  
  4.     Sub Main()
  5.         MessageBox.Show(gresMan.GetString("test"))
  6.     End Sub
  7. End Module
I get an error telling me to make sure I linked/compiled iConvert.resources...

Help me please!