K
kathy
I am trying to build a help system for my CE.NET device using
Studio.NET 2003. In my program(VB.NET), I declared:
<DllImport("Coredll.dll", CallingConvention:=CallingConvention.Winapi)>
Public Shared Function CreateProcess(ByVal moduleName As
String, ByVal fileName As String, ByVal para1 As IntPtr, ByVal para2 As
IntPtr, ByVal hWnd As Int32, ByVal para3 As Int32, ByVal para4 As
IntPtr, ByVal para5 As IntPtr, ByVal para6 As
IntPtr, ByVal info As PROCESS_INFORMATION) As Int32
End Function
Then call this function:
CreateProcess("\windows\peghelp.exe", "\windows\my_help.htm",
IntPtr.Zero, IntPtr.Zero, 0, 0, IntPtr.Zero, IntPtr.Zero,
IntPtr.Zero,info)
When I run program, I got the CE.NET device system help, not
my_help.htm.
Why?
Studio.NET 2003. In my program(VB.NET), I declared:
<DllImport("Coredll.dll", CallingConvention:=CallingConvention.Winapi)>
Public Shared Function CreateProcess(ByVal moduleName As
String, ByVal fileName As String, ByVal para1 As IntPtr, ByVal para2 As
IntPtr, ByVal hWnd As Int32, ByVal para3 As Int32, ByVal para4 As
IntPtr, ByVal para5 As IntPtr, ByVal para6 As
IntPtr, ByVal info As PROCESS_INFORMATION) As Int32
End Function
Then call this function:
CreateProcess("\windows\peghelp.exe", "\windows\my_help.htm",
IntPtr.Zero, IntPtr.Zero, 0, 0, IntPtr.Zero, IntPtr.Zero,
IntPtr.Zero,info)
When I run program, I got the CE.NET device system help, not
my_help.htm.
Why?