Click here to Skip to main content
15,896,437 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRotating Image Pin
å w å î §..6-Feb-05 22:10
å w å î §..6-Feb-05 22:10 
GeneralPressing Enter quits the program Pin
Cedric Moonen6-Feb-05 21:13
Cedric Moonen6-Feb-05 21:13 
GeneralRe: Pressing Enter quits the program Pin
João Paulo Figueira7-Feb-05 7:07
professionalJoão Paulo Figueira7-Feb-05 7:07 
GeneralRe: Pressing Enter quits the program Pin
Cedric Moonen7-Feb-05 7:09
Cedric Moonen7-Feb-05 7:09 
GeneralRe: Pressing Enter quits the program Pin
João Paulo Figueira7-Feb-05 7:18
professionalJoão Paulo Figueira7-Feb-05 7:18 
GeneralRe: Pressing Enter quits the program Pin
Cedric Moonen7-Feb-05 20:14
Cedric Moonen7-Feb-05 20:14 
QuestionHow to use threads? Pin
radura2-Feb-05 5:43
radura2-Feb-05 5:43 
AnswerRe: How to use threads? Pin
eli150219797-Feb-05 1:09
eli150219797-Feb-05 1:09 
Hi,
you should use AfxBeginThread() function.
first,define your thread like this:
UINT TestThread(LPVOID lpvoid);

now,from the main dialog(which controls the threads) call the function
AfxBeginThread(TestThread,this);

now,the thread(let's say your main window class is CMainDlg):

UINT TestThread(LPVOID lpvoid)
{
CMainDlg *dlg = (CMainDlg *)lpvoid;

//All CMainDlg veriables are referenced throug dlg
while(!dlg->Exit)
{
//do something
}

return 1;
}

With best regards,
Eli
GeneralDatabase development for Pocket PCs Pin
acroitoriu1-Feb-05 8:38
acroitoriu1-Feb-05 8:38 
GeneralRe: Database development for Pocket PCs Pin
João Paulo Figueira2-Feb-05 5:03
professionalJoão Paulo Figueira2-Feb-05 5:03 
GeneralRe: Database development for Pocket PCs Pin
Moak4-Feb-05 7:42
Moak4-Feb-05 7:42 
GeneralSOCK_RAW on CE Pin
zoid ! 31-Jan-05 12:01
zoid ! 31-Jan-05 12:01 
GeneralRe: SOCK_RAW on CE Pin
zoid ! 1-Feb-05 4:26
zoid ! 1-Feb-05 4:26 
QuestionIs any smartphone good for development? Pin
Member 55831131-Jan-05 1:40
Member 55831131-Jan-05 1:40 
QuestionHow to prevent notification bubble from being dismissed? Pin
DJonarson29-Jan-05 19:23
DJonarson29-Jan-05 19:23 
QuestionWhere to download masm 6.0? Pin
rushing27-Jan-05 15:25
rushing27-Jan-05 15:25 
AnswerRe: Where to download masm 6.0? Pin
JGonzalezGUS3-Feb-06 8:20
JGonzalezGUS3-Feb-06 8:20 
GeneralCamera Mobile Phone Pin
Identity Undisclosed27-Jan-05 4:01
Identity Undisclosed27-Jan-05 4:01 
GeneralPPC 2003 Read from COM Port Pin
BC_Cartman26-Jan-05 7:42
BC_Cartman26-Jan-05 7:42 
GeneralProblem of multi-thread adding control in cf tabpage Pin
Leungping26-Jan-05 0:26
Leungping26-Jan-05 0:26 
GeneralRe: Problem of multi-thread adding control in cf tabpage Pin
Leungping26-Jan-05 0:38
Leungping26-Jan-05 0:38 
Generaldebug problem Pin
dcudev.lcr24-Jan-05 12:48
dcudev.lcr24-Jan-05 12:48 
GeneralPocket pc 03 and ms access Pin
mldunham20-Jan-05 8:13
mldunham20-Jan-05 8:13 
Generallooking for unoptimised C codes Pin
Frank Francis20-Jan-05 0:08
sussFrank Francis20-Jan-05 0:08 
GeneralRe: looking for unoptimised C codes Pin
Rob Graham5-Feb-05 9:20
Rob Graham5-Feb-05 9:20 

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.