I have Visual Studio Express 2012, NETMF 4.3, and I can compile Glide fine (with 4.3 selected in the build properties).
When I try and use the example in Program.cs, I get this;
‘GHIElectronics.NETMF.Glide.Resources’ is inaccessible due to its protection level c:\users\michael\documents\visual studio 2012\Projects\MFConsoleApplication2\MFConsoleApplication2\Program.cs
[quote]window = GlideLoader.LoadWindow(Resources.GetString(Resources.StringResources.Window));
And I presume it’s trying to read the XML I saved in the TextFile resource…?[/quote]
Sounds like he added the resource as a file instead of a string.
It’s like its trying to load the Resources from Glide itself - not from my Project. Does that make sense?
When I change it to;
// Load the window
window = GlideLoader.LoadWindow(MFConsoleApplication1.Resources.GetString(MFConsoleApplication1.Resources.StringResources.Window));
And explicitly define my project name - it works.
How can I make it not have to include the project name? Why is it trying to look at Glide Resource?