Click here to Skip to main content
15,913,199 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Making Desktop application flexible to monitor resolution Pin
Eugen Podsypalnikov17-Feb-10 3:46
Eugen Podsypalnikov17-Feb-10 3:46 
GeneralRe: Making Desktop application flexible to monitor resolution Pin
Rakesh517-Feb-10 4:17
Rakesh517-Feb-10 4:17 
GeneralRe: Making Desktop application flexible to monitor resolution Pin
Eugen Podsypalnikov17-Feb-10 4:21
Eugen Podsypalnikov17-Feb-10 4:21 
AnswerRe: Making Desktop application flexible to monitor resolution Pin
BonshatS17-Feb-10 14:33
BonshatS17-Feb-10 14:33 
QuestionDLL and .Exe Pin
ramina sen17-Feb-10 2:15
ramina sen17-Feb-10 2:15 
AnswerRe: DLL and .Exe Pin
Game-point17-Feb-10 3:35
Game-point17-Feb-10 3:35 
AnswerRe: DLL and .Exe Pin
Eugen Podsypalnikov17-Feb-10 3:36
Eugen Podsypalnikov17-Feb-10 3:36 
GeneralRe: DLL and .Exe Pin
BIJU Manjeri17-Feb-10 16:40
BIJU Manjeri17-Feb-10 16:40 
COM servers come in two basic varieties: in-process and out-of-process. In-process servers (often referred to as in-proc servers) are DLLs. They're called in-procs because in the Win32 environment, a DLL loads and runs in the same address space as its client. EXEs, in contrast, run in separate address spaces that are physically isolated from one another. In most cases, calls to in-proc objects are very fast because they're little more than calls to other addresses in memory. Calling a method on an in-proc object is much like calling a subroutine in your own application.

Out-of-process servers (also known as out-of-proc servers) come in EXEs. One advantage to packaging COM objects in EXEs is that clients and objects running in two different processes are protected from one another if one crashes. The disadvantage is speed. Calls to objects in other processes are roughly 1,000 times slower than calls to in-proc objects because of the overhead incurred when a method call crosses process boundaries.

Please refer Programming Windows with MFC by Jeff Prosise ->COM
GeneralRe: DLL and .Exe Pin
Saurabh.Garg17-Feb-10 17:10
Saurabh.Garg17-Feb-10 17:10 
QuestionHow to load a bitmap into a Toolbar from Resource Manager? Pin
Software200717-Feb-10 2:07
Software200717-Feb-10 2:07 
AnswerRe: How to load a bitmap into a Toolbar from Resource Manager? Pin
Eugen Podsypalnikov17-Feb-10 3:26
Eugen Podsypalnikov17-Feb-10 3:26 
QuestionCRITICAL SECTION AND MUTEX Pin
ramina sen17-Feb-10 0:58
ramina sen17-Feb-10 0:58 
AnswerRe: CRITICAL SECTION AND MUTEX Pin
Adam Roderick J17-Feb-10 1:13
Adam Roderick J17-Feb-10 1:13 
AnswerRe: CRITICAL SECTION AND MUTEX Pin
Roger Stoltz17-Feb-10 1:40
Roger Stoltz17-Feb-10 1:40 
AnswerRe: CRITICAL SECTION AND MUTEX Pin
Cool_Dev17-Feb-10 22:16
Cool_Dev17-Feb-10 22:16 
Questionproblem in updating the icon Pin
learningvisualc16-Feb-10 23:38
learningvisualc16-Feb-10 23:38 
AnswerRe: problem in updating the icon Pin
Richard MacCutchan17-Feb-10 0:59
mveRichard MacCutchan17-Feb-10 0:59 
GeneralRe: problem in updating the icon Pin
learningvisualc17-Feb-10 1:34
learningvisualc17-Feb-10 1:34 
GeneralRe: problem in updating the icon Pin
Richard MacCutchan17-Feb-10 3:07
mveRichard MacCutchan17-Feb-10 3:07 
AnswerRe: problem in updating the icon Pin
HetzelGJ17-Feb-10 4:41
HetzelGJ17-Feb-10 4:41 
QuestionReading And Writing On The Same File Pin
jannathali16-Feb-10 21:24
jannathali16-Feb-10 21:24 
AnswerRe: Reading And Writing On The Same File Pin
«_Superman_»16-Feb-10 21:30
professional«_Superman_»16-Feb-10 21:30 
AnswerRe: Reading And Writing On The Same File Pin
KingsGambit16-Feb-10 21:50
KingsGambit16-Feb-10 21:50 
GeneralRe: Reading And Writing On The Same File Pin
vkpMark16-Feb-10 22:57
vkpMark16-Feb-10 22:57 
Questionremote sensing row image simulatetor Pin
a.jalaee16-Feb-10 20:07
a.jalaee16-Feb-10 20: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.