Click here to Skip to main content
16,005,339 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: Difference between Web service and RSS [VERY modified] Pin
mysparkle4-Aug-09 5:41
mysparkle4-Aug-09 5:41 
GeneralRe: Difference between Web service and RSS [VERY modified] Pin
Vivek Vijayan7-Sep-09 1:11
Vivek Vijayan7-Sep-09 1:11 
Questionconsume web service with smart phone application using vs 2005 Pin
SEYI MAFE1-Aug-09 22:54
SEYI MAFE1-Aug-09 22:54 
AnswerRe: consume web service with smart phone application using vs 2005 Pin
Arindam Sinha7-Aug-09 2:17
Arindam Sinha7-Aug-09 2:17 
Questionproblem with creating the cab file Pin
prasadbuddhika31-Jul-09 0:35
prasadbuddhika31-Jul-09 0:35 
AnswerRe: problem with creating the cab file Pin
prasadbuddhika31-Jul-09 0:57
prasadbuddhika31-Jul-09 0:57 
Questionmonth calendar can't build when use mfc in a static library [modified] Pin
huke198730-Jul-09 21:58
huke198730-Jul-09 21:58 
QuestionDeveloping Console Like Apps For Palm OS Pin
nathanpc29-Jul-09 15:18
nathanpc29-Jul-09 15:18 
Hello,
I'm learning C++, but i only develop console apps, because graphical C++ development is so much difficult, then i want to know if i can develop console like apps for Palm OS, what i want is this, compile this code for Palm OS for example:
// ClientFille.cpp
// Cria um arquivo sequencial.

#include <iostream>
using std::cerr;
using std::cin;
using std::cout;
using std::endl;
using std::ios;

#include <fstream> // Fluxo de arquivos
using std::ofstream; // Gera a saída do fluxo do arquivo

#include <cstdlib>
using std::exit; // Sai do protótipo de funcão

int main()
{
    //  Construtor ofstream abre arquivo
    ofstream outClientFile( "Clients.dat", ios::out );
    
    // Fecha o programa se não conseguir criar o arquivo
    if ( !outClientFile ) // Operador ! sobrecarregado
    {
       cerr << "File could not be opened" << endl;
       exit( 1 );
    } // Fim do if
    
    cout << "Enter the account, name, and balance." << endl
       << "Enter end-of-file to end the input.\n? ";
       
    int account;
    char name[ 30 ];
    double balance;
    
    // Lê conta, nome e saldo a partir de cin, então coloca no arquivo
    while ( cin >> account >> name >> balance )
    {
       outClientFile << account << ' ' << name << ' ' << balance << endl;
       cout << "? ";
    } // Fim do while
    
    return 0; // Destruitor ofstream fecha o arquivo
} // Fim de main


Thanks,
Nathan Paulino Campos

Jornada 720 - Windows CE 3.00 - ARM Processor
Palm T|X - PalmOS 5

NewsWindows Marketplace for Mobile now open for app submissions Pin
brucedkyle28-Jul-09 7:12
brucedkyle28-Jul-09 7:12 
Questiontooltip control for win ce app Pin
obalesu28-Jul-09 0:11
obalesu28-Jul-09 0:11 
AnswerRe: tooltip control for win ce app Pin
HimanshuJoshi28-Jul-09 23:09
HimanshuJoshi28-Jul-09 23:09 
GeneralRe: tooltip control for win ce app Pin
obalesu29-Jul-09 3:49
obalesu29-Jul-09 3:49 
GeneralRe: tooltip control for win ce app Pin
HimanshuJoshi29-Jul-09 20:13
HimanshuJoshi29-Jul-09 20:13 
QuestionC# Rest web service and Android Client Pin
struja_ns28-Jul-09 0:03
struja_ns28-Jul-09 0:03 
AnswerRe: C# Rest web service and Android Client Pin
faheemsial2-Jun-10 22:01
faheemsial2-Jun-10 22:01 
QuestionRS232 Terminal Chat on Windows CE Emulator Pin
ChincoCodus26-Jul-09 21:47
ChincoCodus26-Jul-09 21:47 
QuestionValues Does not fall within the expected range Pin
Sritanu _ Ghosh26-Jul-09 21:20
Sritanu _ Ghosh26-Jul-09 21:20 
AnswerRe: Values Does not fall within the expected range Pin
PavanPareta27-Jul-09 18:48
PavanPareta27-Jul-09 18:48 
GeneralRe: Values Does not fall within the expected range Pin
Sritanu _ Ghosh2-Aug-09 22:12
Sritanu _ Ghosh2-Aug-09 22:12 
QuestionComboBox column with DataGrid(windows mobile winforms) Pin
Avinash Tumulu24-Jul-09 3:27
Avinash Tumulu24-Jul-09 3:27 
Questionprintscreen in windows ce Pin
obalesu23-Jul-09 20:12
obalesu23-Jul-09 20:12 
AnswerRe: printscreen in windows ce Pin
nathanpc29-Jul-09 15:53
nathanpc29-Jul-09 15:53 
QuestionWindows Mobile Device with Webcams Plugged In Pin
henry00023-Jul-09 17:15
henry00023-Jul-09 17:15 
AnswerRe: Windows Mobile Device with Webcams Plugged In Pin
Joel Ivory Johnson27-Jul-09 14:32
professionalJoel Ivory Johnson27-Jul-09 14:32 
GeneralRe: Windows Mobile Device with Webcams Plugged In Pin
henry00030-Jul-09 19:02
henry00030-Jul-09 19:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.