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
  • eMbedded Visual C++ Help

    c++ hardware tools help question
    3
    0 Votes
    3 Posts
    17 Views
    J
    Thank you! I have a small Network at home 3 computers so it can't be that :-( I dowmloaded the newest Activesync from MS but it wont help? I think I have to get a good book about the eVC++ or RTFM once again. /Jarek He believed the commercials that said drink beer, get laid but at closin' time he was alone, he didn't get paid. Last night his lover was a razorblade.. "Dan Reed song Mix it up" What do you want to patch today?
  • Problems displaying icons in a dialog

    help question learning
    4
    0 Votes
    4 Posts
    9 Views
    J
    Jose M Castellanos wrote: Is this the reason for the problem to continue? I don't think so. There is no problem in having your resources in different languages, as long as you have a similar set for each language. What you should check now is for the resource language defined in your project settings (Alt+F7 in eVC3). Go to the "Resources" tab and choose the language - English (U.S.), rebuild the project, and it should work out fine. Note that there should be no problem in choosing other language for your resources, as long as you keep all settings in sync. Good luck! João Paulo Figueira
  • Remote Access Service(RAS)

    c++ sysadmin tutorial question
    2
    0 Votes
    2 Posts
    4 Views
    J
    AKSIVAKUMAR wrote: Can any one tell me how to implement RAS using eVC++ ? There is a RAS API in Windows CE 3. All functions' names begin with RAS. You can look it up in your evc help. AKSIVAKUMAR wrote: How to do RAS using GSM/GPRS modem.? Ask your carrier about the specific parameters, create a RAS connection, and use RasDial to establish the connection. When it is up, there should be an available internet connection for your application. AKSIVAKUMAR wrote: How to establish a connection using RAS? See above. AKSIVAKUMAR wrote: How to access the remote server using RAS ? After the connection is established, you can start using HTTP, FTP or any other inernet protocol. It should be automatic. AKSIVAKUMAR wrote: Also I want to create,delete phone entry. Use RasDeleteEntry to delete the phone book entry. Use RasSetEntryProperties to create a new RAS phone book entry.
  • StartMenu

    c++ tutorial
    6
    0 Votes
    6 Posts
    6 Views
    J
    Try this instead: Having full screen without accessing the SHFullScreen API [^]
  • Soft Reset

    tutorial question
    2
    0 Votes
    2 Posts
    4 Views
    J
    Check this out: How can I soft reset Pocket PC device?[^]
  • Display Wait Cursor

    help tutorial
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Mail using SMTP/POP3

    tutorial question
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Debugging

    debugging question
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • ReginalConfiguration

    c++ help tutorial workspace
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • WaitKey

    c++
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • how to connect to GPRS and send data?

    question c++ com sysadmin tutorial
    2
    0 Votes
    2 Posts
    6 Views
    J
    R.Rajesh wrote: port.Send(strInit); This is too low-level. :eek: There are other options! ;) It is better for you to create a RAS connection and then use whatever protocol you need on top of the IP connection it will provide. If you want to be a bit more sophisticated, you can use the Connection Manager to arbitrate the connections for you (there is an MFC example in your PPC 2002 SDK). This way, you don't need to worry about the gory low-level details of making a connection. João Paulo
  • Problem with SELECT DISTINCT Queries

    help database tutorial
    4
    0 Votes
    4 Posts
    6 Views
    J
    You can try working around this problem by creating a separate table, possibly with the same structure, but with an index on the field(s) of your UNIQUE clause. Then copy all the rows from the first table to the second table, making sure that the UNIQUE field(s) does(do) not exist. The index is there to speed up your search. At the end of the procedure, you will have the UNIQUE records. You might want to use this without a separate table, but you would have to create an in-memory array where the UNIQUE fields would be stored, and compared against. If you don't want to do nothing of this, you will have to upgrade to a better database engine, like SQL Server CE 2.0. Good luck! João Paulo
  • Set theme / wallpaper

    windows-admin tutorial question
    10
    0 Votes
    10 Posts
    5 Views
    D
    Thanks! Daniel ;) --------------------------- Never change a running system!
  • emulating propertysheet

    help com algorithms tutorial question
    2
    0 Votes
    2 Posts
    4 Views
    J
    This is a nasty problem. Maybe you can do this using CDialog but you have to remember some issues: 1-Each dialog has its own toolbar, so you will not get away with just one toolbar for all dialogs. 2-Before showing the second dialog, you can end the first one. But this might cause screen flicker. 3-Why not use modeless dialogs? They can all coexist and you can show or hide them as needed. I suspect that for this solution, you would have to create a class to manage them all. Each modeless dialog would have a pointer to the manager (can be a non-window class) to have it hide one dialog and show the next. Hope I made some sense to you. Good luck!
  • DDI Hooking

    question
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Captureing CFormView

    question performance help tutorial
    2
    0 Votes
    2 Posts
    5 Views
    D
    Take a look on the following articles: Barry's Screen Capture Screen and Form capture with Managed C++ I think you can use some parts of this software also for the Pocket PC. Daniel ;) --------------------------- Never change a running system!
  • CCeCommandBar isn't shown

    c++ help tutorial
    2
    0 Votes
    2 Posts
    3 Views
    J
    Your child dialog is a CDialog-derived class? If it is, it should have its onw empty m_pWndEmptyCB that overlaps the one you want to show (created in CHAS_PocketClientDlg::OnInitDialog). So, if you want to show it, you must create it (using the same procedure) in the child as well.
  • sharing code between a WinCE and windows application

    c++ help question learning
    2
    0 Votes
    2 Posts
    4 Views
    A
    OK, I pretty much have it figured out, and am currently sharing code and resource files between a CE eVC++3.0 project and a PC VC++6.0 project. It is slick...everything is in the same project directory. The resource file errors I was getting was from context-sensitive help incompatibility. Post a reply if you are interested in the details of how I did this.
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • Saving all the content of PPC2002 emulator's memory

    c++ hardware performance
    2
    0 Votes
    2 Posts
    3 Views
    J
    Jose M Castellanos wrote: I was wondering if there's any option or tool that make possible to backup the emulator's memory state and reload it when neccesary. The easiest approach is when you shut down the emulator, tell it to keep its state (there's a combo for that purpose).