Hi
How to identify that Terminal (Windows Mobile 2005 ) connect to cradle ?
I need to identical in the Terminal
thank's in advance
Hi
How to identify that Terminal (Windows Mobile 2005 ) connect to cradle ?
I need to identical in the Terminal
thank's in advance
If you are checking from the host (desktop), there are 2 ways I know of: via a process trigger and via a COM interface.
You could use RAPI. Have a look at RAPI communication library at OpenNETCF. This helps if you are testing from the host's side.
If you need to do it from the device:
static public bool IsConnectedToCradle
{
get { return SystemState.CradlePresent; }
}
PS: FWIW, in Windows Mobile terminology, the 'terminal' is usually called the 'device'.