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
  • File Copy

    question
    4
    0 Votes
    4 Posts
    1 Views
    J
    You will have to declare it with something like this (I'm no eVB expert and I haven't tested this): Public Declare Function CopyFile Lib "Coredll" Alias "CopyFileW" (ByVal ExistingFileName As String, ByVal NewFileName As String, ByVal FailIfExists As Bool) See the help file on the Declare statement. Regards, João Paulo
  • Beginner...

    csharp question asp-net dotnet
    2
    0 Votes
    2 Posts
    0 Views
    J
    theJazzyBrain wrote: What developer web sites would you suggest other than CP which is good but not focused on Pocket PC dev... Try The Pocket PC Developer's Network[^] theJazzyBrain wrote: Basic question is, what versions of Windows for Pocket PC support the Compact .NET framework? I'm not sure about the original Pocket PC, but you will find support for the .NET Compact Framework on the Pocket PC 2002 (in RAM) and 2003 (in ROM). If you are going down the .NET CF way, find yourself a fast machine... ;) theJazzyBrain wrote: and aplogies for my ignorance on Pocket PC development... We are all born ignorant. The ones that die that way never asked questions, or never had the chance to. ;) Regards, João Paulo
  • Software Piracy in Mobile Computing

    2
    0 Votes
    2 Posts
    0 Views
    J
    Anonymous wrote: Anybody having idea about s/w piracy in pocket pc What do you mean: for copying, or for protecting from copy? Regards, João Paulo
  • Tap-And-Hold in Edit Controls

    c++ help tutorial
    5
    0 Votes
    5 Posts
    0 Views
    J
    Hi Dave, To get the selected portion of the text, you use the EM_GETSEL message or, if using MFC, CEdit::GetSel. These will return indexes to the starting and ending characters of the selected substring. To retrieve the full string, use GetWindowText. Regards, João Paulo
  • OnDraw() of MFC ActiveX Control is get called twice

    c++ csharp com hardware tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • MFC ActiveX Control GetWindowRect() is giving wrong details

    c++ csharp com hardware
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • SMS inbox Transport

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Auto-Run from Compact Flash Card

    c++ adobe hardware question
    2
    0 Votes
    2 Posts
    0 Views
    J
    Here: QA: How to implement autorun from a storage card?[^] Regards, João Paulo
  • HP Mobile Printing SDK for PocketPC

    tutorial c++ help announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Tab navigation in PocketPC

    c++ question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Database

    c++ database hardware question
    15
    0 Votes
    15 Posts
    0 Views
    J
    Find the adoce31.tlb file and make the #import directive point there. If you do not have this file on your PC, download it from Microsoft Website (search for ADOCE 3.1) and install it. Regards, João Paulo
  • CCheckListBox?

    question
    4
    0 Votes
    4 Posts
    0 Views
    J
    :-O
  • Real Time in VC++

    c++ question
    2
    0 Votes
    2 Posts
    0 Views
    R
    I got it to work!Using GetTickCount(),in case this may be useful for someone else later!!
  • Shutting an App Down *Completely*

    performance question
    8
    0 Votes
    8 Posts
    0 Views
    J
    Try this: QA: How can I close my application by clicking the smart minimize (X) button?[^] Regards, João Paulo
  • eVC 4.0 does not generate precompile files

    help
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • PocketPC 2k2 with EVC++4.0

    c++ help question workspace
    3
    0 Votes
    3 Posts
    0 Views
    L
    rodent¹ wrote: additionally, ppc2k or ppc2k2 apps SHOULD run on ppc2k3 From my experience (limited :)) this is the case. rodent¹ wrote: if you want to develop for ppc2k or ppc2k2 devices you must use evc++3.0 This seems to be true. For now I am going to stick with EVC++3.0, as for the time being I will only be developing for PPC2k2. Thanks for the response :-D Paul ;) Garfield.Bark(); **---Configuration: garfield - Win32 Deworm---** C:\garfield.cpp(9) : error C2039: 'Bark' : is not a member of 'CCat'
  • file size and #include

    question c++ tools help
    5
    0 Votes
    5 Posts
    0 Views
    M
    For #1: The linker supplied with eVC will remove unused packages (called COMDATs in the documentation) if the /OPT:REF switch is turned on. This is turned on by default, unless the /DEBUG switch is enabled, in which case it's turned off. To force the linker to remove unreferenced functions, the compiler must be instructed to package each function in its own COMDAT. You do this by specifying the /Gy option to the compiler (called 'Enable function-level linking' in the 'Customize' category of the Project Settings dialog). If this option is not enabled, the linker can only include or exclude individual object files. A static library basically consists of multiple object files with a header describing what's in it. From memory, Microsoft's static libraries are compiled with this option enabled.
  • Can't disable level 2 menu item

    tools help question
    2
    0 Votes
    2 Posts
    0 Views
    T
    After reporting this issue to Microsoft's tech support, they acknowledged that this was a bug in Pocket PC 2002.
  • Problem disabling submenu item (Repost for Co-worker )

    help tools question
    4
    0 Votes
    4 Posts
    0 Views
    T
    After reporting this issue to Microsoft's tech support, they acknowledged that this was a bug in Pocket PC 2002.
  • afxres.h and resource file issues

    c++ help visual-studio json question
    3
    0 Votes
    3 Posts
    0 Views
    R
    thanks Steve and it makes sense...i'll check out WINNT.H on my system for the #defines you mention. what's frustrating me is that i haven't found out why the resource compiler is even including afxres.h in the resource includes when i purposely create the project as a non-MFC project and don't utilize the wizard-created files. i'll check out what you suggest as well as continue to dig into the compiler/linker/other options in hope of finding this.