Skip to content

Mobile

General Discussions on Mobile related development. For Android specific development please see the Android forum

This category can be followed from the open social web via the handle mobile@forum.codeproject.com

3.8k Topics 8.1k Posts
  • Multiple Toolbars

    question
    11
    0 Votes
    11 Posts
    27 Views
    J
    (teeth gnashing) I had to go through the MFC source code... :eek:
  • Urgent! Winsock Problem

    c++ help com sysadmin hardware
    3
    0 Votes
    3 Posts
    11 Views
    A
    MikeS, Thanks for your explanation about the problem! It's really useful for me to continue my project. I think I will change to let the desktop to listnen. Thanks again! Wil
  • Removing Annunciators from Taskbar

    c++ linux question
    11
    0 Votes
    11 Posts
    28 Views
    J
    You're kinda right, but I've yet to see a sample of what you want to do. If you go to MSDN, the samples of SHFullScreen are exactly that: full screen. I think I led you into a blind alley: maybe this is not the solution you are looking for. Sorry! :(
  • Platform Manager 4.0 Installation Problem

    c++ hardware help question workspace
    7
    0 Votes
    7 Posts
    18 Views
    M
    Well, one clean XP installation later, and it installed flawlessly. :-D :rolleyes: Thanks for your help, anyway! :) ________________________ http://www.webreaper.net
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • Change mouse cursor

    question
    4
    0 Votes
    4 Posts
    11 Views
    D
    You want to use a mouse cursor on Pocket PC? :confused: Daniel ;) --------------------------- Never change a running system!
  • Theory

    question
    2
    0 Votes
    2 Posts
    6 Views
    J
    Here's my take at it: Windows CE - The underlying operating system. PocketPC - Windows CE 3.0 with special specs. Handheld - Windows CE 2.1 (I believe) in clamshell landscape shape. Palm size - Older version of PocketPC-sized devices, WinCE 2.1 (?) Palm - That's another story...
  • MIDI APIs on Windows CE

    2
    0 Votes
    2 Posts
    6 Views
    J
    Check the wfmtmidi.h header file. If you have the PPC2002 SDK and help file, check out the entry for the WAVEFORMAT_MIDI_MESSAGE structure.
  • how to get the UUID (GUID) of a PDA

    c++ tutorial question
    3
    0 Votes
    3 Posts
    6 Views
    D
    Thanks, it works¡ ;)
  • "Button-bar" like in the CE-Addressbook

    question
    4
    0 Votes
    4 Posts
    10 Views
    J
    Right. Do this: In your CChildWnd, declare the following: protected: CLetterStrip m_wndStrip; In the OnCreate handler, create the window. To place it on the top, just like the image on the article, use the following: DWORD dwStyle = WS_CHILD | WS_VISIBLE; m_wndStrip.Create(dwStyle, CPoint(0, 0), this, ID_LETTERSTRIP); To handle the letter commands, use the following message map: BEGIN_MESSAGE_MAP(CChildView, CWnd)) //{{AFX_MSG_MAP(CWordList) ... ON_COMMAND(ID_LETTERSTRIP, OnLetterStrip) ... //}}AFX_MSG_MAP END_MESSAGE_MAP() In the OnLetterStrip method, use m_wndStrip.GetOption() to retrieve the selected letter. Note that the letter strip is created as a child window, not as a toolbar.
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • WinCE.NET driver development

    csharp hardware help tutorial career
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    4 Posts
    9 Views
    J
    Siva, You don't send anything explicitly through RAS. Instead, you use RAS to set up a TCP/IP connection over which your data packects will be sent and received. Think of RAS as connecting your PDA to a TCP/IP network. When your RAS connection is active, you can use HTTP, FTP or other protocol to exchange data. Handling RAS itself is not very complex, and involves the use of the RAS* APIs and the WM_RASDIALEVENT message. This message is used as a notifier to a specific window to help monitor RAS dialing events. If you are using MFC, handle it like this: LRESULT CDlgRas::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) { // // Special check for WM_RASDIALEVENT message // if(message == WM_RASDIALEVENT) { return OnRasDialEvent(wParam, lParam); } return CDialog::WindowProc(message, wParam, lParam); } Here is an outline of the sequence to dial through a RAS connection: RasEnumConnections checks if there are any open RAS connections (you can only have one). If there is a connection open, check if it is the one you want with RasGetConnectStatus. To open the RAS connection, use RasGetDialParams, followed by RasDial. In this API, use the window that will receive the WM_RASDIALEVENT messages. To close the RAS connection, use RasHangUp. If you want to read some serious discussion on how RAS works under Windows CE 3.0, read "Windows CE 3.0 Application Programming" by Nick Grattan and Marshall Brain, from Prentice Hall. Good luck!
  • Where can I download the latest POOM SDK?

    html database com question
    3
    0 Votes
    3 Posts
    2 Views
    A
    Hi, Yes that poom sample is working well in pocket pc iPAQ. Here is my question:- How to deal with Task,Mail,Today,Appointments,Messages & Tasks for all the devices pocket pc 2002/pcoket pc/hpc pro ? Please let me know if you have any ideas.. Thanks, siva
  • Largest size ?

    question
    2
    0 Votes
    2 Posts
    7 Views
    J
    Docs say: Effective with version 3.0, the maximum size for the RAM file system is 256 MB, with a maximum size of 32 MB for a single file. In earlier versions of Windows CE, the limit for both the RAM system and a single file is 16 MB. Also effective with version 3.0, the maximum number of objects in the object store is increased from 65,536 to approximately 4,000,000. Cheers
  • Access database

    database question
    2
    0 Votes
    2 Posts
    6 Views
    J
    Yes, you can use Access databases on WinCE 3.0 (I'm developing applications for PocketPC 2002 with Pocket Access). The problem is the emulator, but there are ways to copy the databases to and from the emulation using ActiveSync. I read somewhere in MSDN that you need to have two COM ports in your PC to achieve this. Check MSDN.
  • ABOUT BROADCAST IN 802.11 Ad hoc

    c++ help question
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Printing in Windows CE, 2.11

    help hardware
    5
    0 Votes
    5 Posts
    8 Views
    A
    Hi Jørgen, Thank you ! Yeah it seems working ! I have to find another solution..that Daniel S talks about sending AT commands via IR to the printer.I am in a position to figure out all the posiblities to talk with printer and FAX. If you have any ideas/suggestion please let me know in detail. Shall certainly revert back to you if any need arises.. Thanks siva
  • Hwo to send document to FAX from eVC++ application

    c++
    8
    0 Votes
    8 Posts
    23 Views
    D
    If your Pocket PC have a serial port you can connect it directly to the fax. Maybe, there are also exist some CF Cards with a serial port (RS232) for the Pocket PC. I think there exist also some IRDA to RS232 converter you can connect to the fax. And of cource there is a very smart way to send the AT commands to the fax, with Bluetooth. There exists some Bluetooth to RS232 converter you can connect to the fax. For the Pocket PC there are also exist some Bluetooth CF Cards. Daniel ;) --------------------------- Never change a running system!
  • Edit control height and caret

    question
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied