C
Cheetah
Anyone here had the same problem with me, or this is Microsoft .NET CF bug?
Alex Feinman said:This is exactly what I mean - Japanes build of OS - it *may* be significant.
It is not unheard of for a localized OS build to behave differently.
Does this problem occur for you on the emulator?
--
Alex Feinman
---
Visit http://www.opennetcf.org
This isKhanh said:I don't understand what you means by "localized build", but I'm using
VS.NET 2003 English version, Pocket PC Fujitsu, OS Japanese version.
Is it likely by specific device type?
Have fun
Khanh
"Alex Feinman [MVP]" <[email protected]> wrote in message message
likely
Suresh said:I too face a similar problem while invoking the ie from my vb application.
I
use ie to show the help to my pda application. I am tracking the
exception.
Application closes without raising any error. My code is attached.
help me to solve this.
public class Help
{
[DllImport("coredll.Dll", EntryPoint="CreateProcess", SetLastError=true)]
extern static int CreateProcess(string strImageName,
string strCmdLine,
IntPtr pProcessAttributes,
IntPtr pThreadAttributes,
int bInheritsHandle,
int dwCreationFlags,
IntPtr pEnvironment,
IntPtr pCurrentDir,
IntPtr bArray,
ProcessInfo oProc);
private class ProcessInfo
{
public Int32 hProcess;
public Int32 hThread;
public Int32 ProcessID;
public Int32 ThreadID;
}
public static void showHelp(string strScreenId)
{
try
{
//strScreenId = "Top";
ProcessInfo priProcessInfo = new ProcessInfo();
CreateProcess("iexplore.exe",
"#" + strScreenId,
IntPtr.Zero,
IntPtr.Zero,
0,
0,
IntPtr.Zero,
IntPtr.Zero,
IntPtr.Zero,
priProcessInfo);
}
catch(Exception expException)
{
string strExpMessage = expException.Message.ToString();
}
}
}
Cheetah said:Anyone here had the same problem with me, or this is Microsoft .NET CF
bug?
Peter Foot said:Since Pocket PC automatically closes applications if memory is low, it may
be closing your app when it is deactivated, whats the memory usage like when
your app is running? Do you have any other apps running in the background?
Peter
--
Peter Foot
Windows Embedded MVP
www.inthehand.com | www.opennetcf.org
Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups
Suresh said:I too face a similar problem while invoking the ie from my vb application.
I
use ie to show the help to my pda application. I am tracking the
exception.
Application closes without raising any error. My code is attached.
help me to solve this.
public class Help
{
[DllImport("coredll.Dll", EntryPoint="CreateProcess", SetLastError=true)]
extern static int CreateProcess(string strImageName,
string strCmdLine,
IntPtr pProcessAttributes,
IntPtr pThreadAttributes,
int bInheritsHandle,
int dwCreationFlags,
IntPtr pEnvironment,
IntPtr pCurrentDir,
IntPtr bArray,
ProcessInfo oProc);
private class ProcessInfo
{
public Int32 hProcess;
public Int32 hThread;
public Int32 ProcessID;
public Int32 ThreadID;
}
public static void showHelp(string strScreenId)
{
try
{
//strScreenId = "Top";
ProcessInfo priProcessInfo = new ProcessInfo();
CreateProcess("iexplore.exe",
"#" + strScreenId,
IntPtr.Zero,
IntPtr.Zero,
0,
0,
IntPtr.Zero,
IntPtr.Zero,
IntPtr.Zero,
priProcessInfo);
}
catch(Exception expException)
{
string strExpMessage = expException.Message.ToString();
}
}
}
Cheetah said:Anyone here had the same problem with me, or this is Microsoft .NET CF
bug?