Click here to Skip to main content
15,892,059 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Forcing new to fail [modified] Pin
hint_541-Jun-06 5:25
hint_541-Jun-06 5:25 
QuestionModeless Dialog Disappearing Pin
aei_totten31-May-06 11:00
aei_totten31-May-06 11:00 
AnswerRe: Modeless Dialog Disappearing Pin
Matt Gullett31-May-06 13:51
Matt Gullett31-May-06 13:51 
GeneralRe: Modeless Dialog Disappearing Pin
aei_totten1-Jun-06 4:18
aei_totten1-Jun-06 4:18 
AnswerRe: Modeless Dialog Disappearing Pin
David Crow1-Jun-06 4:39
David Crow1-Jun-06 4:39 
GeneralRe: Modeless Dialog Disappearing Pin
aei_totten1-Jun-06 6:19
aei_totten1-Jun-06 6:19 
QuestionActive document Pin
Luksky31-May-06 10:17
Luksky31-May-06 10:17 
AnswerRe: Active document Pin
Nibu babu thomas31-May-06 19:26
Nibu babu thomas31-May-06 19:26 
GeneralRe: Active document Pin
Luksky1-Jun-06 7:49
Luksky1-Jun-06 7:49 
QuestionLearning C++ -- from a C# point of view Pin
matiasdk31-May-06 10:08
matiasdk31-May-06 10:08 
AnswerRe: Learning C++ -- from a C# point of view Pin
Zac Howland31-May-06 10:19
Zac Howland31-May-06 10:19 
QuestionCan i save font in my MFC application? Pin
Immunity1831-May-06 10:07
Immunity1831-May-06 10:07 
AnswerRe: Can i save font in my MFC application? Pin
Benoy Bose31-May-06 19:00
Benoy Bose31-May-06 19:00 
GeneralRe: Can i save font in my MFC application? Pin
NiceNaidu31-May-06 20:10
NiceNaidu31-May-06 20:10 
Questionenumport problem Pin
wang200731-May-06 9:57
wang200731-May-06 9:57 
AnswerRe: enumport problem Pin
David Crow31-May-06 10:11
David Crow31-May-06 10:11 
AnswerRe: enumport problem Pin
NiceNaidu31-May-06 19:32
NiceNaidu31-May-06 19:32 
QuestionSocket Class to use with MFC [modified] Pin
SPowers31-May-06 9:48
SPowers31-May-06 9:48 
AnswerRe: Socket Class to use with MFC [modified] Pin
Zac Howland31-May-06 10:13
Zac Howland31-May-06 10:13 
GeneralRe: Socket Class to use with MFC [modified] Pin
SPowers31-May-06 10:19
SPowers31-May-06 10:19 
GeneralRe: Socket Class to use with MFC [modified] Pin
Zac Howland31-May-06 10:37
Zac Howland31-May-06 10:37 
SPowers wrote:
Would switching to an event based socket help at all?


In a single-threaded app, not really. From what you are describing, you are spending a lot of time processing GUI events, which keeps the socket's OnReceive handler from doing its job.

SPowers wrote:
Following your design could I create a socket to receive and one to send and only put the receive side of the socket within the thread? My gut tells me that this would be impossible but then again this is the first socketed app I've made.


Generally, I usually stick the socket operations completely in a separate thread. The send calls don't gain much of a benefit from this, but it does keep the socket operations grouped together logically (e.g. makes it easier to understand the code).

Its been a while since I looked at it, but I believe that is what I did in the code for
this article. The article itself is about something completely different, but I used communication code I had written as part of the demo. That should at least give you a starting place, though.

If you decide to become a software engineer, you are signing up to have a 1/2" piece of silicon tell you exactly how stupid you really are for 8 hours a day, 5 days a week

Zac
Questionusing a dll to run the graphics of a scr Pin
reasley31-May-06 9:37
reasley31-May-06 9:37 
AnswerRe: using a dll to run the graphics of a scr Pin
David Crow31-May-06 10:10
David Crow31-May-06 10:10 
QuestionRe: using a dll to run the graphics of a scr Pin
reasley31-May-06 10:16
reasley31-May-06 10:16 
QuestionRe: using a dll to run the graphics of a scr Pin
David Crow31-May-06 10:29
David Crow31-May-06 10:29 

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.