Shell function in VB6 ????

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

In vb 6.0, we have shell to run an executable program. Does this function included in .net CF ?? or is that other similar Functions ???

Thanks.
 
This functionality is not available out of the box. You can either use
OpenNETCF library (OpennetCF.Diagnostics.Process class) or check for an
example here:

--
Alex Feinman
---
Visit http://www.opennetcf.org
HONG said:
In vb 6.0, we have shell to run an executable program. Does this function
included in .net CF ?? or is that other similar Functions ???
 
Public Declare Function CreateProcess Lib "coredll.dll" Alias _

"CreateProcess" (ByVal imageName As String, ByVal cmdLine As String, ByVal _

lpProcessAttributes As Integer, ByVal lpThreadAttributes As Integer, ByVal _

boolInheritHandles As Int32, ByVal dwCreationFlags As Int32, ByVal _

lpEnvironment As Integer, ByVal lpszCurrentDir As Integer, ByVal si As _

Integer, ByVal pi As Integer) As Integer



HONG said:
In vb 6.0, we have shell to run an executable program. Does this function
included in .net CF ?? or is that other similar Functions ???
 
Back
Top