Get the application path

  • Thread starter Thread starter Régis LYARD
  • Start date Start date
R

Régis LYARD

I like to get the application path on Windows CE using VB.NET.

System.Reflection.Assembly.GetExecutingAssembly.Location does not exist in
the compact framework.

Thanks

Regis
 
Hi,

This works great for me:

System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)

Have fun.
 
Back
Top