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:
I get an error telling me to make sure I linked/compiled iConvert.resources...VB Code:
Module MMain Public gresMan As Resources.ResourceManager = New Resources.ResourceManager("iConvert", System.Reflection.Assembly.GetAssembly(GetType(MMain))) Sub Main() MessageBox.Show(gresMan.GetString("test")) End Sub End Module
Help me please!




Reply With Quote