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
 
Back
Top