I have an app that runs on a Pocket PC and gives messages and prompts
to the user in their local language, depending on the locale set on the
PDA. This works fine in VS 2003 and Compact Framework version 1. When I
change to VS 2005 and CF 2.0, what ever I do, I keep getting a
"MissingManifestResourceException".
The code is this:
Public resMgr As New ResourceManager("Strings", _
[Assembly].GetExecutingAssembly())
Then for display,
MessageBox.Show(resMgr.GetString("Holesdone"))
As I say, in the earlier version, this worked fine. I have tried
including a CultureInfo.CurrentCulture object, but stll nothing. I am
completely at a loss - any ideas out there?
(I also tried copying the code from a Localized form, using "Public
resMgr As System.ComponentModel.ComponentResourceManager = New
System.ComponentModel.ComponentResourceManager(GetType(Strings))" but
still the same problem.)
Peter Royle