Click here to Skip to main content
15,915,603 members
Home / Discussions / Mobile
   

Mobile

 
GeneralMobile game programming Pin
Vahid Kazemi10-Mar-04 23:09
Vahid Kazemi10-Mar-04 23:09 
GeneralRe: Mobile game programming Pin
Daniel Strigl11-Mar-04 0:43
Daniel Strigl11-Mar-04 0:43 
GeneraleMbedded Visual C++ 4.0 SP3 Pin
João Paulo Figueira10-Mar-04 21:53
professionalJoão Paulo Figueira10-Mar-04 21:53 
GeneralUnique identificator Pin
cbusgut10-Mar-04 21:10
cbusgut10-Mar-04 21:10 
GeneralRe: Unique identificator Pin
João Paulo Figueira10-Mar-04 22:13
professionalJoão Paulo Figueira10-Mar-04 22:13 
GeneralRe: Unique identificator Pin
cbusgut15-Mar-04 20:59
cbusgut15-Mar-04 20:59 
QuestionAdding static text to combo box? Pin
rodneyk110-Mar-04 11:41
rodneyk110-Mar-04 11:41 
AnswerRe: Adding static text to combo box? Pin
Daniel Strigl10-Mar-04 19:58
Daniel Strigl10-Mar-04 19:58 
The following code works fine in my Pocket PC 2002 application:
...
// Dialog Data
    //{{AFX_DATA(CPropConnectionPage)
    enum { IDD = IDD_PAGE_PROPCONNECTION };
    CComboBox m_cbxComPortNr;
    //}}AFX_DATA
...

...
m_cbxComPortNr.ResetContent();

for (int n = 1; n <= 255; n++)
{
    CString str;
    str.Format(_T("COM%d"), n);
    m_cbxComPortNr.AddString(str);
}

m_cbxComPortNr.SetCurSel(m_uiConnectionPort - 1);
...


Regards,
Daniel.
--
FIND A JOB YOU LOVE, AND YOU'LL NEVER HAVE TO WORK A DAY OF YOUR LIFE. Wink | ;)
GeneralImages are not staying on the control . Any body knows how to display images on HTML Control in PPC 2003 Pin
AKSIVAKUMAR10-Mar-04 5:44
AKSIVAKUMAR10-Mar-04 5:44 
QuestionHow to show the caret on combo box Pin
Bui Huy Kien9-Mar-04 16:19
Bui Huy Kien9-Mar-04 16:19 
AnswerRe: How to show the caret on combo box Pin
Daniel Strigl9-Mar-04 20:18
Daniel Strigl9-Mar-04 20:18 
GeneralRe: How to show the caret on combo box Pin
Bui Huy Kien15-Mar-04 16:13
Bui Huy Kien15-Mar-04 16:13 
Question[eVC] How to use ISA bus? Pin
GuilhemMtp8-Mar-04 23:28
GuilhemMtp8-Mar-04 23:28 
GeneralDisplay BYTES.... Pin
Deepa Gopal8-Mar-04 22:43
Deepa Gopal8-Mar-04 22:43 
GeneralRe: Display BYTES.... Pin
João Paulo Figueira8-Mar-04 22:56
professionalJoão Paulo Figueira8-Mar-04 22:56 
GeneralRe: Display BYTES.... Pin
Daniel Strigl9-Mar-04 0:14
Daniel Strigl9-Mar-04 0:14 
GeneralProblem in Display images on HTML Control in Pocket PC 2003 Pin
AKSIVAKUMAR7-Mar-04 22:29
AKSIVAKUMAR7-Mar-04 22:29 
GeneralDelete problem in the PPC2002 to PPC2003 migration code Pin
Mandarps7-Mar-04 17:56
Mandarps7-Mar-04 17:56 
GeneralRe: Delete problem in the PPC2002 to PPC2003 migration code Pin
Jonas Larsson7-Mar-04 21:46
Jonas Larsson7-Mar-04 21:46 
GeneralRe: Delete problem in the PPC2002 to PPC2003 migration code Pin
Jonas Larsson8-Mar-04 3:14
Jonas Larsson8-Mar-04 3:14 
QuestionWhy there is no Java? Pin
huanghe5-Mar-04 4:57
huanghe5-Mar-04 4:57 
AnswerRe: Why there is no Java? Pin
Mazdak7-Mar-04 6:29
Mazdak7-Mar-04 6:29 
Generalcreating an Install Pin
rodneyk14-Mar-04 9:52
rodneyk14-Mar-04 9:52 
GeneralRe: creating an Install Pin
Kyle Tillman4-Mar-04 17:04
Kyle Tillman4-Mar-04 17:04 
GeneralRe: creating an Install Pin
rodneyk15-Mar-04 5:43
rodneyk15-Mar-04 5:43 

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.