Click here to Skip to main content
15,922,512 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Call default internet browser Pin
Richard MacCutchan28-Feb-10 10:34
mveRichard MacCutchan28-Feb-10 10:34 
AnswerRe: Call default internet browser Pin
wangningyu28-Feb-10 13:09
wangningyu28-Feb-10 13:09 
GeneralRe: Call default internet browser Pin
David Crow28-Feb-10 16:42
David Crow28-Feb-10 16:42 
GeneralRe: Call default internet browser Pin
wangningyu28-Feb-10 16:51
wangningyu28-Feb-10 16:51 
GeneralRe: Call default internet browser Pin
Stephen Hewitt28-Feb-10 19:25
Stephen Hewitt28-Feb-10 19:25 
AnswerRe: Call default internet browser Pin
Behzad Saffarian1-Mar-10 6:57
Behzad Saffarian1-Mar-10 6:57 
QuestionRe: Call default internet browser Pin
David Crow1-Mar-10 9:06
David Crow1-Mar-10 9:06 
GeneralRe: Call default internet browser Pin
wangningyu1-Mar-10 13:29
wangningyu1-Mar-10 13:29 
GeneralRe: Call default internet browser Pin
Stephen Hewitt1-Mar-10 17:33
Stephen Hewitt1-Mar-10 17:33 
GeneralRe: Call default internet browser Pin
Stephen Hewitt1-Mar-10 17:35
Stephen Hewitt1-Mar-10 17:35 
QuestionDefine "overllaped" in serial communication - please [modified] SOLVED - see reference links in thread Pin
Vaclav_28-Feb-10 5:08
Vaclav_28-Feb-10 5:08 
AnswerRe: Define "overllaped" in serial communication - please Pin
CPallini28-Feb-10 6:11
mveCPallini28-Feb-10 6:11 
GeneralRe: Define "overllaped" in serial communication - please Pin
Vaclav_28-Feb-10 6:30
Vaclav_28-Feb-10 6:30 
AnswerRe: Define "overllaped" in serial communication - please Pin
Iain Clarke, Warrior Programmer28-Feb-10 21:41
Iain Clarke, Warrior Programmer28-Feb-10 21:41 
GeneralRe: Define "overllaped" in serial communication - please Pin
Vaclav_1-Mar-10 4:37
Vaclav_1-Mar-10 4:37 
QuestionAlternatives to MSMQ Pin
tximo27-Feb-10 22:52
tximo27-Feb-10 22:52 
AnswerRe: Alternatives to MSMQ Pin
Garth J Lancaster28-Feb-10 0:17
professionalGarth J Lancaster28-Feb-10 0:17 
GeneralRe: Alternatives to MSMQ Pin
tximo28-Feb-10 8:58
tximo28-Feb-10 8:58 
GeneralRe: Alternatives to MSMQ Pin
Luc Pattyn28-Feb-10 9:04
sitebuilderLuc Pattyn28-Feb-10 9:04 
GeneralRe: Alternatives to MSMQ Pin
tximo28-Feb-10 21:29
tximo28-Feb-10 21:29 
GeneralRe: Alternatives to MSMQ Pin
Garth J Lancaster28-Feb-10 10:00
professionalGarth J Lancaster28-Feb-10 10:00 
GeneralRe: Alternatives to MSMQ Pin
tximo28-Feb-10 21:34
tximo28-Feb-10 21:34 
GeneralRe: Alternatives to MSMQ Pin
Rolf Kristensen2-Mar-10 12:29
Rolf Kristensen2-Mar-10 12:29 
I would do some performance tests before starting to look for alternative. Just to have a baseline of what performance you have now with MSMQ-

According to http://msdn.microsoft.com/en-us/library/ms811054.aspx[^] then when using MSMQ Express-mode (not using disk or transactionality) then it can execute 7000 TRX/Sec. (On an old computer)

Besides the fact that MSMQ locks you to the Microsoft Platform, then I think it is a good choice for communication in the C++ world.

But you could try looking at named pipes/tcpip, which should be the closest thing to raw communication. But then you have to implement your own protocol for how to recognize a single message, as data just comes in one long stream. With all the issues with recovery from broken communication links, timeouts, etc. And then suddenly you have your own non-standard communication platform which only you can troubleshoot, and it is hard to get help from the outside.
QuestionSyntax of HANDLE operator in CSyncObject Pin
ForNow27-Feb-10 18:25
ForNow27-Feb-10 18:25 
AnswerRe: Syntax of HANDLE operator in CSyncObject Pin
Richard MacCutchan28-Feb-10 1:34
mveRichard MacCutchan28-Feb-10 1:34 

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.