Click here to Skip to main content
15,896,727 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Questionsystem tray Pin
rjkg16-May-08 21:09
rjkg16-May-08 21:09 
AnswerRe: system tray Pin
Naveen16-May-08 22:27
Naveen16-May-08 22:27 
AnswerRe: system tray Pin
Hamid_RT16-May-08 23:46
Hamid_RT16-May-08 23:46 
AnswerRe: system tray Pin
David Crow19-May-08 4:50
David Crow19-May-08 4:50 
AnswerRe: system tray Pin
ThatsAlok6-Jul-09 20:44
ThatsAlok6-Jul-09 20:44 
QuestionNeed clarification Pin
kuttiam16-May-08 21:00
kuttiam16-May-08 21:00 
AnswerRe: Need clarification Pin
Cedric Moonen16-May-08 23:12
Cedric Moonen16-May-08 23:12 
AnswerRe: Need clarification Pin
Gary R. Wheeler17-May-08 0:36
Gary R. Wheeler17-May-08 0:36 
Just to add a little to Cedric's explanation:

Visual Studio supports dynamic and static linking of MFC.

With dynamic linking, your application is linked to an import library for MFC. The first time it calls an MFC function, the matching function in the import library sets things up so that this and future calls are to the proper function in the MFC DLL.

Using static linking, your application calls functions directly in an MFC object library. The DLL is not required in this case.

The advantage of dynamic linking is that your .EXE file is much smaller. The disadvantage is that you must make sure that the correct version of the MFC DLL is installed when you install your application.

The advantage of static linking is that you don't have to worry about the installed version of MFC, since all of the required code is linked directly into your application. The disadvantage, obviously, is that your .EXE is much larger.

Software Zen: delete this;
Fold With Us![^]

Questioneditbox Pin
Mohanraj D16-May-08 20:59
Mohanraj D16-May-08 20:59 
AnswerRe: editbox Pin
Naveen16-May-08 22:29
Naveen16-May-08 22:29 
AnswerRe: editbox Pin
Hamid_RT17-May-08 0:40
Hamid_RT17-May-08 0:40 
GeneralRe: editbox Pin
Mohanraj D18-May-08 16:54
Mohanraj D18-May-08 16:54 
GeneralRe: editbox Pin
Hamid_RT18-May-08 18:12
Hamid_RT18-May-08 18:12 
GeneralRe: editbox Pin
Mohanraj D18-May-08 18:17
Mohanraj D18-May-08 18:17 
GeneralRe: editbox Pin
Hamid_RT18-May-08 18:28
Hamid_RT18-May-08 18:28 
QuestionListbox with having progress bar for Each Item Pin
Member 288306716-May-08 18:44
Member 288306716-May-08 18:44 
AnswerRe: Listbox with having progress bar for Each Item Pin
Hamid_RT16-May-08 19:28
Hamid_RT16-May-08 19:28 
QuestionListBox Each Item with Progressbar Pin
Member 288306716-May-08 18:41
Member 288306716-May-08 18:41 
AnswerRe: ListBox Each Item with Progressbar Pin
Hamid_RT16-May-08 19:29
Hamid_RT16-May-08 19:29 
QuestionCProperysheet visibility Pin
Vaibhav Gade16-May-08 18:27
Vaibhav Gade16-May-08 18:27 
QuestionRe: CProperysheet visibility Pin
prasad_som16-May-08 23:15
prasad_som16-May-08 23:15 
AnswerRe: CProperysheet visibility Pin
Vaibhav Gade20-May-08 3:55
Vaibhav Gade20-May-08 3:55 
AnswerRe: CProperysheet visibility Pin
Nelek17-May-08 0:02
protectorNelek17-May-08 0:02 
QuestionCListBox head language display problem Pin
Stan the man16-May-08 16:49
Stan the man16-May-08 16:49 
AnswerRe: CListBox head language display problem Pin
Hamid_RT16-May-08 19:30
Hamid_RT16-May-08 19:30 

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.