Hi
I've Nokia d211 cars installed on my PPC 2002, iPaq 3870
GPRS and VPN are working but how to configure PPC to use WLAN, not GPWS when
connecting to Internet where i've my Wi-Fi station availablee
thanks
Juha-Pekka
1. Cannot open notes in Outlook 2002 on IPAQ pocket PC - Microsoft Office Outlook
2. Error Opening and Setting Serial Port for Pocket PC 2002
Hi,
I am working on a driver of a bluetooth printer in C++ in eMVC 3. My
application will run in Pocket PC 2002. I am trying to open the serial port
assigned to the COM port emulation by the Pocket PC 2002. However, I have
encountered some problems. I can create a port and get the handle
successfully, but when I tried to set the Comm Setting and timeout setting,
it failed.
Here is the sample code for the sequence I used:
HANDLE Handle;
COMMTIMEOUTS CommTimeOuts;
DCB dcb = { 0 };
Handle = CreateFile( "COM8", 0 | GENERIC_READ | GENERIC_WRITE, 0, NULL,
OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
CommTimeOuts.ReadIntervalTimeout = MAXDWORD;
CommTimeOuts.ReadTotalTimeoutMultiplier = 0;
CommTimeOuts.ReadTotalTimeoutConstant = 1000;
CommTimeOuts.WriteTotalTimeoutMultiplier = 0;
CommTimeOuts.WriteTotalTimeoutConstant = 1000;
rc = SetCommTimeouts( Handle, &CommTimeOuts);
if (rc == 0)
return -1;
<- failed...
dcb.DCBlength = sizeof( dcb );
dcb.BaudRate = 115200;
dcb.ByteSize = 8;
dcb.Parity = FALSE;
dcb.StopBits = ONESTOPBIT;
dcb.fOutxCtsFlow = 0;
dcb.fOutxDsrFlow = 0;
dcb.fDtrControl = DTR_CONTROL_DISABLE;
dcb.fDsrSensitivity = 0;
dcb.fOutX = 0;
dcb.fInX = 0;
dcb.fErrorChar = 0;
dcb.fRtsControl = RTS_CONTROL_DISABLE;
dcb.fNull = 0;
dcb.XonChar = 0x11;
dcb.XoffChar = 0x13;
dcb.ErrorChar = 0;
if ( SetCommState( Handle, &dcb) == 0)
{
return (-1);
}
<- failed
For the pocket pc I am working on, there is a setting for bluetooth
(Bluetooth for Windows CE (BTW-CE)) Version 1.3.1 Build 46.
In fact, the Comport assigned is 3 for Inbound comport and 8 for Outbound
comport. Are there anywhere I can change the setting for the port assigned?
Any other where I missed for the Comport setting?
Regards
Kenric
3. GPRS/GSM connection programmatically (Pocket PC 2002) - Pocket PC Networking
4. help, Pocket PC 2002 (MDA1) and GPRS connection
5. Pocket PC 2002 RasSetEntryProperties for GPRS
6. PC 2002 WLAN error message in POP3 mode
I can receive my email traffic on my iPAQ using POP3 and earthlink.net. However I cannot send new messages or replies using Outlook. I receive an error message that states that the recipient is an "invalid message recipient" and "message could not be delivered to an invalid message recipient". I can send emailusing hotmail and yahoo on the same iPAQ. I have tried every imaginable configuration. Is there a box I should have checked or not checked in PC 2002 Outlook? It looks like the system is trying to check the contact address and is unable to make the connection in Outlook contacts. What configuration needs to be used.
7. Operating System Choices: Pocket PC, Pocket PC 2002, Pocket PC 2003: - Pocket PC
8. Dot Net App does not work for Pocket PC 2002
I created a simple Dot Net App for my Pocket PC 2002 OS. All the app does is connect up to my SQL database. But the app will not connect up to the database. I use the 2002 emulator and get the error that can not find server. But when I use the 2003 emulator it connects up fine to the database. That is the same with my pda that runs 2003 and the one that runs 2002. It works on the 2003 and does not connect on the 2002. Again the error that I get is that it can not find the server. What am I doing wrong???? Thanks for you help MutlyP