Open file with cf 2

  • Thread starter Thread starter Steve Kanel
  • Start date Start date
S

Steve Kanel

I'm developing a VB.NET 2005 with cf 2 for windows mobile 5
I'm trying to open any file (image, word, excel , mp3)
with the default program .
Is this possible with vb or c# and CreateProcess.

Thanks for help!
 
Use the System.Diagnostics.Process class - new in v2 e.g.

Process.Start("\\My Documents\\somefile.mp3");

Peter
 

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