I've been professionally developing in VB since version 3 and I am finally trying to make the move to .NET (2003). I'm at a loss on something that should be easy.
I am working on a Pocket PC app that will store configuration data in an xml file.
How do I...
A). Get the application path?
B). Open the file?
I've tried this to get the current path but I get a "Not Supported" error:
Dim sDir As String
sDir = System.IO.Directory.GetCurrentDirectory.ToString()
Any help would be appreciated.
