beginner's frustrations

  • Thread starter Thread starter Steve Howard
  • Start date Start date
S

Steve Howard

I am trying to find the location of my exe once it is installed on my PDA. I
thought this might work, but it turns out to be unsupported in the Compact
Framework

Label1.Text = Environment.CurrentDirectory





Suggestions?



Steve
 
I don't know if this help (maybe I didn't understand question ;))

appPath =
Path.GetDirectoryName(Reflection.Assembly.GetExecutingAssembly.GetName.CodeB
ase.ToString)
 
Back
Top