Click here to Skip to main content
15,888,218 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionCamStudio Project - Runs But Gives Debug Assertions Pin
Django_Untaken3-Sep-13 8:09
Django_Untaken3-Sep-13 8:09 
AnswerRe: CamStudio Project - Runs But Gives Debug Assertions Pin
Richard MacCutchan3-Sep-13 9:23
mveRichard MacCutchan3-Sep-13 9:23 
QuestionUsing CDHtmlDialog in MFC Dialog Pin
Don Guy2-Sep-13 7:47
Don Guy2-Sep-13 7:47 
SuggestionRe: Using CDHtmlDialog in MFC Dialog Pin
Richard MacCutchan2-Sep-13 21:35
mveRichard MacCutchan2-Sep-13 21:35 
AnswerRe: Using CDHtmlDialog in MFC Dialog Pin
Erudite_Eric3-Sep-13 3:43
Erudite_Eric3-Sep-13 3:43 
QuestionC++ code to create thread to handle method Pin
pk jain1-Sep-13 22:16
pk jain1-Sep-13 22:16 
AnswerRe: C++ code to create thread to handle method Pin
Richard MacCutchan1-Sep-13 23:01
mveRichard MacCutchan1-Sep-13 23:01 
AnswerRe: C++ code to create thread to handle method Pin
pasztorpisti1-Sep-13 23:25
pasztorpisti1-Sep-13 23:25 
I can help you in threading because your problem is simple, I would do this with a task object queue (threadpool) but do you think you need multithreading for this? You are calling different methods of objects from different threads within the same process? You can test only threadsafe methods that don't interfere with each other this way. I would rather do this with multiprocessing instead of multithreading. You start several processes each of them performing a different test. This way each process has only one main test thread but these main/test threads dont interfere with each other because they are isolated in separate processes. Sometimes multiprocessing is the winner especially when you are using a non-threadsafe library. So why do you want to use multithreading?
GeneralRe: C++ code to create thread to handle method Pin
Erudite_Eric3-Sep-13 3:52
Erudite_Eric3-Sep-13 3:52 
GeneralRe: C++ code to create thread to handle method Pin
pasztorpisti3-Sep-13 4:22
pasztorpisti3-Sep-13 4:22 
GeneralRe: C++ code to create thread to handle method Pin
Erudite_Eric3-Sep-13 21:43
Erudite_Eric3-Sep-13 21:43 
GeneralRe: C++ code to create thread to handle method Pin
pasztorpisti3-Sep-13 22:00
pasztorpisti3-Sep-13 22:00 
GeneralRe: C++ code to create thread to handle method Pin
Erudite_Eric4-Sep-13 4:47
Erudite_Eric4-Sep-13 4:47 
GeneralRe: C++ code to create thread to handle method Pin
pasztorpisti4-Sep-13 4:51
pasztorpisti4-Sep-13 4:51 
GeneralRe: C++ code to create thread to handle method Pin
Erudite_Eric5-Sep-13 21:33
Erudite_Eric5-Sep-13 21:33 
GeneralRe: C++ code to create thread to handle method Pin
pasztorpisti5-Sep-13 22:38
pasztorpisti5-Sep-13 22:38 
AnswerRe: C++ code to create thread to handle method Pin
Erudite_Eric3-Sep-13 3:50
Erudite_Eric3-Sep-13 3:50 
AnswerRe: C++ code to create thread to handle method Pin
Eytukan6-Sep-13 2:49
Eytukan6-Sep-13 2:49 
QuestionProblem playing (rendering) wave file using WASAPI Pin
AmbiguousName1-Sep-13 19:25
AmbiguousName1-Sep-13 19:25 
QuestionMFCPropertyGridProperty masked edit control Pin
Richard Andrew x641-Sep-13 18:02
professionalRichard Andrew x641-Sep-13 18:02 
AnswerRe: MFCPropertyGridProperty masked edit control Pin
D G McKay1-Sep-13 23:17
D G McKay1-Sep-13 23:17 
GeneralRe: MFCPropertyGridProperty masked edit control Pin
Richard Andrew x641-Sep-13 23:35
professionalRichard Andrew x641-Sep-13 23:35 
Generalabout destructor Pin
Syeda Fatimah30-Aug-13 21:40
Syeda Fatimah30-Aug-13 21:40 
GeneralRe: about destructor Pin
Richard MacCutchan30-Aug-13 21:57
mveRichard MacCutchan30-Aug-13 21:57 
GeneralRe: about destructor Pin
«_Superman_»31-Aug-13 22:58
professional«_Superman_»31-Aug-13 22:58 

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.