Click here to Skip to main content
15,867,330 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Marquee Progess Bar Pin
Emilio Garavaglia9-Apr-10 3:04
Emilio Garavaglia9-Apr-10 3:04 
GeneralRe: Marquee Progess Bar Pin
Cool_Dev9-Apr-10 3:42
Cool_Dev9-Apr-10 3:42 
QuestionHow to assign Drive Letter to a volume? Pin
Madan Chauhan8-Apr-10 2:21
Madan Chauhan8-Apr-10 2:21 
AnswerRe: How to assign Drive Letter to a volume? Pin
Adam Roderick J8-Apr-10 2:31
Adam Roderick J8-Apr-10 2:31 
AnswerRe: How to assign Drive Letter to a volume? Pin
KarstenK8-Apr-10 3:08
mveKarstenK8-Apr-10 3:08 
QuestionHow could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 2:09
m_code8-Apr-10 2:09 
AnswerRe: How could I run one of my class member Functions in a new thread: Pin
Adam Roderick J8-Apr-10 2:20
Adam Roderick J8-Apr-10 2:20 
AnswerRe: How could I run one of my class member Functions in a new thread: Pin
Cool_Dev8-Apr-10 2:24
Cool_Dev8-Apr-10 2:24 
pass the class instance to thread proc as argument and call function from there
e *pE = ...   //assign running instance of e. assign this pointer if from inside the class e.
AfxBeginThread(fnThreadProc, p);

//Thread proc definition
UINT fnThreadProc(LPVOID lpParam)
{
  E *pE = (*pE)lpParam;
  pE->myMainLoopFunc(); //call any public function in class e.
}

GeneralRe: How could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 3:03
m_code8-Apr-10 3:03 
GeneralMessage Removed Pin
8-Apr-10 3:28
Eugen Podsypalnikov8-Apr-10 3:28 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 3:44
m_code8-Apr-10 3:44 
AnswerRe: How could I run one of my class member Functions in a new thread: Pin
KarstenK8-Apr-10 3:41
mveKarstenK8-Apr-10 3:41 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
m_code8-Apr-10 3:50
m_code8-Apr-10 3:50 
GeneralRe: How could I run one of my class member Functions in a new thread: Pin
KarstenK8-Apr-10 4:09
mveKarstenK8-Apr-10 4:09 
QuestionCreateBitmapIndirect() doesnt create bitmap Pin
globus0008-Apr-10 2:08
globus0008-Apr-10 2:08 
AnswerRe: CreateBitmapIndirect() doesnt create bitmap Pin
KarstenK8-Apr-10 3:23
mveKarstenK8-Apr-10 3:23 
AnswerRe: CreateBitmapIndirect() doesnt create bitmap Pin
Jonathan Davies8-Apr-10 5:23
Jonathan Davies8-Apr-10 5:23 
QuestionWidest Character and Height of the character Pin
shiv@nand8-Apr-10 1:13
shiv@nand8-Apr-10 1:13 
AnswerRe: Widest Character and Height of the character Pin
Eugen Podsypalnikov8-Apr-10 1:37
Eugen Podsypalnikov8-Apr-10 1:37 
GeneralRe: Widest Character and Height of the character Pin
Adam Roderick J8-Apr-10 1:41
Adam Roderick J8-Apr-10 1:41 
GeneralRe: Widest Character and Height of the character Pin
shiv@nand8-Apr-10 1:49
shiv@nand8-Apr-10 1:49 
GeneralRe: Widest Character and Height of the character Pin
Eugen Podsypalnikov8-Apr-10 2:01
Eugen Podsypalnikov8-Apr-10 2:01 
GeneralRe: Widest Character and Height of the character Pin
shiv@nand8-Apr-10 2:17
shiv@nand8-Apr-10 2:17 
AnswerRe: Widest Character and Height of the character Pin
Michel Godfroid8-Apr-10 6:47
Michel Godfroid8-Apr-10 6:47 
JokeRe: Widest Character and Height of the character Pin
Eugen Podsypalnikov8-Apr-10 9:07
Eugen Podsypalnikov8-Apr-10 9:07 

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.