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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top