I've been using an iPaq 3800 & 3900 devices and the code below works just
fine. But on a Toshiba with PPC 2003 runtime files everytime I execute this
code it starts a new instance of the program instead of reactivating the
current instance in memory. Therefore I get several instances of the same
program running at the same time. Can anyone help????
Public Declare Function CreateProcess Lib "Coredll" Alias "CreateProcessW" _
(ByVal pszImageName As String, ByVal pszCmdLine As String, ByVal
psaProcess As Long, _
ByVal psaThread As Long, ByVal fInheritHandles As Long, ByVal fdwCreate As
Long, _
ByVal pvEnvironment As Long, ByVal pszCurDir As Long, ByVal psiStartInfo
As Long, _
ByVal pProcInfo As String) As Long
lResult = CreateProcess("\Windows\pvbload.exe", "\Storage Card\Program_
Files\MobileLink\MobileLink4.vb", 0, 0, 0, 0, 0, 0, 0, "")
PS: I developing in evb until I master c# or vb.net
Thanks in advance,
steve