Using shell execute?

  • Thread starter Thread starter dave m
  • Start date Start date
D

dave m

I had been able to launch an application and have my app. wait until the
called application closed in VS2003 using OpenNetCF, such as:
intTaskID = Shell("\program files\camera.exe", AppWinStyle.MinimizedFocus,
True, 20)

That functionallity seems to be gone in OpenNetCF 2.0. Does anyone have
any ideas how I can accomplish this in VS2005 (vb.net)?
 
When it's no longer in OpenNETCF 2.0, that's because it's in .NET CF 2.0, so
you should look in the MS help. System.Diagnostics.Process, I think.

Paul T.
 
Back
Top