D
dev15
Hi, i am developing a vb localised app for Pocketpc 03 and WM5.
I have resource files for German and English called Resources.de.resx
and Resources.resx
I am trying to create a resource manager object :
LocalApp is my app namespace, However the code does not compile
due to the rm = New ResourceManager("LocalApp.Resources", Assembly.GetExecutingAssembly()))
statement. I also tried using My.Resources but that doesn't pass the Intellisense checker.
I noticed my resources files are in a My Project folder which the wizard generated, don't know
if this is causing an issue.
What is is the best way to access the resources in the satellite assemblies.
Public Shared Sub Main()
rm = New ResourceManager("LocalApp.Resources", Assembly.GetExecutingAssembly()))
objFrmMain = New Form1
Application.Run(objFrmMain)
End Sub
I have resource files for German and English called Resources.de.resx
and Resources.resx
I am trying to create a resource manager object :
LocalApp is my app namespace, However the code does not compile
due to the rm = New ResourceManager("LocalApp.Resources", Assembly.GetExecutingAssembly()))
statement. I also tried using My.Resources but that doesn't pass the Intellisense checker.
I noticed my resources files are in a My Project folder which the wizard generated, don't know
if this is causing an issue.
What is is the best way to access the resources in the satellite assemblies.
Public Shared Sub Main()
rm = New ResourceManager("LocalApp.Resources", Assembly.GetExecutingAssembly()))
objFrmMain = New Form1
Application.Run(objFrmMain)
End Sub