R
Rich M
I have a NETCF v1 application that on two customer's Pocket PC devices is
throwing an exception from the ResourceManager constructor. This works on my
device and many other customer devices. My code is (simplified for the
example):
ResourceManager resMan;
Assembly assembly = Assembly.GetExecutingAssembly();
if (assembly != null){
resMan = new ResourceManager("DayNotezPPC.Strings", assembly);
}
The constructor for the ResourceManager is throwing an exception of type
System.Exception. The Message property of the Exception class returns
"Exception". This is not any help to me!
If I examine the resource names by examining the
this.GetType().Assembly.GetManifestResourceNames() string array, I find a
resource named "DayNotezPPC.Strings.resources" which corresponds to the base
name specified in the constructor parameter.
I also tried to create a ResourceManager with the call:
ResourceManager resMan = new ResourceManager(this.GetType());
This also throws an exception.
I have the same device (Dell Axim x51v) that is reported having this
problem. Both Axims have the same latest A06 ROM version. Both customers are
running WM5 that have NETCF v1 SP3 built into their device's ROM.
Has anyone encountered this before? Any ideas to try?
Thanks,
Rich M.
throwing an exception from the ResourceManager constructor. This works on my
device and many other customer devices. My code is (simplified for the
example):
ResourceManager resMan;
Assembly assembly = Assembly.GetExecutingAssembly();
if (assembly != null){
resMan = new ResourceManager("DayNotezPPC.Strings", assembly);
}
The constructor for the ResourceManager is throwing an exception of type
System.Exception. The Message property of the Exception class returns
"Exception". This is not any help to me!
If I examine the resource names by examining the
this.GetType().Assembly.GetManifestResourceNames() string array, I find a
resource named "DayNotezPPC.Strings.resources" which corresponds to the base
name specified in the constructor parameter.
I also tried to create a ResourceManager with the call:
ResourceManager resMan = new ResourceManager(this.GetType());
This also throws an exception.
I have the same device (Dell Axim x51v) that is reported having this
problem. Both Axims have the same latest A06 ROM version. Both customers are
running WM5 that have NETCF v1 SP3 built into their device's ROM.
Has anyone encountered this before? Any ideas to try?
Thanks,
Rich M.