views:

360

answers:

2

Is there a way to start another application from within Compact .Net framework 1.0 similar to

System.Diagnostics.Process.Start

on the Windows side?

I need to start a CAB file for installation.

Thanks, Kishore.

+2  A: 

You can P/Invoke CreateProcess or ShellExecuteEx. An alternative is to use the older Smart Device Framework (1.4) which wraps these P/Invokes with an object model to match the desktop. The former is straightforward. The latter will make your code more portable and readable for managed developers.

ctacke