Click here to Skip to main content
15,902,938 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: Real-Time graphic library ! Pin
Daniel Strigl16-May-03 5:46
Daniel Strigl16-May-03 5:46 
QuestionHow can I set Vietnamese font ? Pin
dlhson215-May-03 7:42
dlhson215-May-03 7:42 
QuestionUsing 2 languages in Program ? Pin
dlhson215-May-03 7:39
dlhson215-May-03 7:39 
GeneralMobile (N3410) Pin
-- NA --10-May-03 6:16
-- NA --10-May-03 6:16 
GeneralCE 3.0 Stupidty Pin
#realJSOP9-May-03 9:59
professional#realJSOP9-May-03 9:59 
GeneralRe: CE 3.0 Stupidty Pin
João Paulo Figueira9-May-03 12:06
professionalJoão Paulo Figueira9-May-03 12:06 
QuestionCan a windowless dll have a message loop? Pin
RuchikaDhingra8-May-03 15:08
RuchikaDhingra8-May-03 15:08 
AnswerRe: Can a windowless dll have a message loop? Pin
João Paulo Figueira8-May-03 22:12
professionalJoão Paulo Figueira8-May-03 22:12 
Another option would be to use a thread. Worker threads do not need a message loop and you can control their timing with equal (if not greater) accuracy. The code would look something like this:

BOOL bLoop = TRUE;

while(bLoop)
{
    Sleep(30*60*1000);    // 30 minutes in milliseconds

    //
    // Do your stuff here. Do not forget to set bLoop to
    // FALSE when you want the loop terminated.
    //
}


Please note that this code might not be the best for battery saving purposes.
GeneralRe: Can a windowless dll have a message loop? Pin
RuchikaDhingra9-May-03 6:25
RuchikaDhingra9-May-03 6:25 
GeneralActiveSync 3.5 and Compaq IPAQ 3835 Pin
nicholas.gionfriddo7-May-03 5:42
nicholas.gionfriddo7-May-03 5:42 
GeneralRe: ActiveSync 3.5 and Compaq IPAQ 3835 Pin
João Paulo Figueira7-May-03 11:28
professionalJoão Paulo Figueira7-May-03 11:28 
GeneralRe: ActiveSync 3.5 and Compaq IPAQ 3835 Pin
nicholas.gionfriddo8-May-03 2:21
nicholas.gionfriddo8-May-03 2:21 
GeneralRe: ActiveSync 3.5 and Compaq IPAQ 3835 Pin
João Paulo Figueira8-May-03 3:04
professionalJoão Paulo Figueira8-May-03 3:04 
GeneralRe: ActiveSync 3.5 and Compaq IPAQ 3835 Pin
nicholas.gionfriddo8-May-03 3:26
nicholas.gionfriddo8-May-03 3:26 
GeneralRe: ActiveSync 3.5 and Compaq IPAQ 3835 Pin
João Paulo Figueira8-May-03 3:37
professionalJoão Paulo Figueira8-May-03 3:37 
GeneralLoading - Serialization Pin
Mariz6-May-03 4:45
Mariz6-May-03 4:45 
GeneralRe: Loading - Serialization Pin
João Paulo Figueira6-May-03 7:08
professionalJoão Paulo Figueira6-May-03 7:08 
GeneralRe: Loading - Serialization Pin
Mariz6-May-03 7:18
Mariz6-May-03 7:18 
GeneralRe: Loading - Serialization Pin
João Paulo Figueira6-May-03 11:08
professionalJoão Paulo Figueira6-May-03 11:08 
GeneralSerialize for MFC Pin
Mariz2-May-03 5:58
Mariz2-May-03 5:58 
GeneralRe: Serialize for MFC Pin
Ancient Dragon3-May-03 16:34
Ancient Dragon3-May-03 16:34 
GeneraleMbedded Visual C++ Help Pin
Jarek G1-May-03 1:03
Jarek G1-May-03 1:03 
GeneralRe: eMbedded Visual C++ Help Pin
João Paulo Figueira1-May-03 10:51
professionalJoão Paulo Figueira1-May-03 10:51 
GeneralRe: eMbedded Visual C++ Help Pin
Jarek G1-May-03 22:34
Jarek G1-May-03 22:34 
GeneralKilling an aplication Pin
Mariz29-Apr-03 4:24
Mariz29-Apr-03 4:24 

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.