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
  • 0 Votes
    6 Posts
    0 Views
    D
    Something like this? HWND hWndParent = ... // Handle to the parent window HWND hWndChild = ... // Handle to the child window ASSERT(hWndParent); ASSERT(hWndChild); RECT rt; ::GetWindowRect(hWndChild, &rt); ::MapWindowPoints(HWND_DESKTOP, hWndParent, (LPPOINT) &rt, 2); -- Cheers, Daniel ;)
  • Embedded VC++ emulation hangs

    question c++ hardware
    5
    0 Votes
    5 Posts
    0 Views
    E
    Thanks! I've got a real device. I just thought that it would be quicker to emulate than to develop on the "real thing". Programs created and downloaded to the PocketPC i've got works just fine :). Again, thank you! /Christian
  • Wap gateway error

    csharp help visual-studio tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Setting break point on Shared memory location

    c++ hardware debugging performance
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • problem with afx.h in a dll

    c++ hardware help question
    2
    0 Votes
    2 Posts
    0 Views
    D
    Why do you need the afx.h header file? Daniel ;) --------------------------- Never change a running system!
  • Hey João

    help question
    3
    0 Votes
    3 Posts
    0 Views
    J
    Please read my post in the "Discuss this article" link (bottom of the article). There is a very important warning on the Ok and Cancel handlers. Hope you find it useful! Regards, João Paulo
  • Vectors in windows CE

    question learning
    4
    0 Votes
    4 Posts
    0 Views
    S
    Thank you. These classes are just what I was looking for... Well they aren't vectors, but they're close enough ;). STLPort also looked interesting, so thanks for the links concerning that too...
  • Unload a form

    performance help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Odd behaviour inserting into Sql CE

    database help question c++ sql-server
    4
    0 Votes
    4 Posts
    0 Views
    F
    Coudln't work out what was causing it, so I changed the format of the table to remove the identity attreibute, all working now. thanks.
  • My program is not work in Pocket PC 2003!

    help question
    4
    0 Votes
    4 Posts
    0 Views
    J
    Build->Configurations, Add 2 new for wcearmv4 from the default relase/debug templates. “Our solar system is Jupiter and a bunch of junk” - Charley Lineweaver 2002
  • Scriptinghost for NetCF ????

    csharp question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Phone call (TAPI) with PPC

    tutorial c++ json
    2
    0 Votes
    2 Posts
    0 Views
    U
    Hi again! I got CeDialer to work, but now i can do only data calls, with no voice. It only beeps when i pick up the called party's receiver. I suppose its becouse the line 1122.: lpCallParams->dwMediaMode = LINEMEDIAMODE_DATAMODEM; what should be lpCallParams->dwMediaMode = LINEMEDIAMODE_INTERACTIVEVOICE; But if i set to interactivevoice, than the lineMakeCall gives an error. What is wrong? Thanks in advance: Shane99
  • Database connection with pocket pc emulator

    database help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • precalculating button control size issue

    json help tutorial question announcement
    6
    0 Votes
    6 Posts
    0 Views
    R
    interesting. as you suggested in an earlier post, it makes sense to use SYSTEM_FONT rather than assuming Tahoma...more cross platform. fyi, i discovered the reason why i had to use -9 for lfHeight (rather than -12) was that i was inconsistently muliplying by GetDeviceCaps(hdc, LOGPIXELSY)/72...everything works as expected when i use it consistently. thanks for the feedback
  • lfFaceName compiler error

    help question
    5
    0 Votes
    5 Posts
    0 Views
    R
    thanks daniel and i'll check out his article! actually, your code worked perfectly once i had a cup of coffee and corrected how i had cut & pasted it into my code.:doh:
  • Reading and Writing Files

    hardware
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • IRDA communication problem.

    help question com lounge
    9
    0 Votes
    9 Posts
    0 Views
    D
    The translation of my IrDA article is ready and published on on the PocketPCDN at http://www.pocketpcdn.com/articles/irda.html. Daniel ;) --------------------------- Never change a running system!
  • STL ???

    c++ question hardware help
    2
    0 Votes
    2 Posts
    0 Views
    D
    Take a look at STL for eMbedded Visual C++ - Windows CE. Daniel ;) --------------------------- Never change a running system!
  • Sucks II

    help question learning
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • It Just Sucks!

    c++ help question
    3
    0 Votes
    3 Posts
    0 Views
    J
    John Simmons / outlaw programmer wrote: Am I missing something here? My guess is that something gets screwed with the pre-compiled header directive. Turn off precompiled headers for your \CommonSourceCode files in your mfc project. That should atleast make it compile. John Simmons / outlaw programmer wrote: Microsoft sucks. Windows CE sucks. EVC3 sucks I know the feeling. I get to this state about once a month. ;) Jonas “Our solar system is Jupiter and a bunch of junk” - Charley Lineweaver 2002