Click here to Skip to main content
15,912,932 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionAfxLoadLibrary problems Pin
netsharq31-Mar-06 5:39
netsharq31-Mar-06 5:39 
AnswerRe: AfxLoadLibrary problems Pin
David Crow31-Mar-06 5:49
David Crow31-Mar-06 5:49 
GeneralRe: AfxLoadLibrary problems Pin
netsharq31-Mar-06 6:19
netsharq31-Mar-06 6:19 
GeneralRe: AfxLoadLibrary problems Pin
David Crow31-Mar-06 7:07
David Crow31-Mar-06 7:07 
GeneralRe: AfxLoadLibrary problems Pin
netsharq31-Mar-06 7:23
netsharq31-Mar-06 7:23 
GeneralRe: AfxLoadLibrary problems Pin
David Crow31-Mar-06 7:42
David Crow31-Mar-06 7:42 
GeneralRe: AfxLoadLibrary problems Pin
netsharq31-Mar-06 8:00
netsharq31-Mar-06 8:00 
GeneralRe: AfxLoadLibrary problems Pin
David Crow31-Mar-06 8:09
David Crow31-Mar-06 8:09 
netsharq wrote:
Sorry, if i have hurt you..


I don't recall being hurt. Confused | :confused:

You seem to be very confused on the basics of C programming. #include is a preprocessor directive that pulls in the contents of the specified file, _dbdao.h in this case, as if those contents had appeared in the source program at the point where the directive appears. This has nothing to do with linking.

You can link in one of two ways: implicit (compile-time) or explicit (run-time). With implicit linking, you link to an import library (.LIB file). The OS loads the DLL when the executable using it is loaded. The executable calls the DLL’s exported functions just as if the functions were contained within the executable. With explicit linking, the executable using the DLL must call LoadLibrary() and GetProcAddress() to access the DLL’s exported functions. The executable must call the exported functions through a function pointer.


"Let us be thankful for the fools. But for them the rest of us could not succeed." - Mark Twain

"There is no death, only a change of worlds." - Native American Proverb


GeneralRe: AfxLoadLibrary problems Pin
netsharq31-Mar-06 8:30
netsharq31-Mar-06 8:30 
GeneralRe: AfxLoadLibrary problems Pin
David Crow31-Mar-06 8:39
David Crow31-Mar-06 8:39 
GeneralRe: AfxLoadLibrary problems Pin
netsharq31-Mar-06 9:20
netsharq31-Mar-06 9:20 
GeneralRe: AfxLoadLibrary problems Pin
David Crow3-Apr-06 2:44
David Crow3-Apr-06 2:44 
QuestionOnSize for CDialog doesn't get entered Pin
ns31-Mar-06 5:08
ns31-Mar-06 5:08 
AnswerRe: OnSize for CDialog doesn't get entered Pin
Maximilien31-Mar-06 5:30
Maximilien31-Mar-06 5:30 
GeneralRe: OnSize for CDialog doesn't get entered Pin
ns31-Mar-06 6:05
ns31-Mar-06 6:05 
QuestionProblems again Pin
Waldermort31-Mar-06 4:39
Waldermort31-Mar-06 4:39 
AnswerRe: Problems again Pin
Wes Aday31-Mar-06 4:46
professionalWes Aday31-Mar-06 4:46 
AnswerRe: Problems again Pin
David Crow31-Mar-06 4:49
David Crow31-Mar-06 4:49 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 4:56
Waldermort31-Mar-06 4:56 
GeneralRe: Problems again Pin
David Crow31-Mar-06 5:06
David Crow31-Mar-06 5:06 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 5:26
Waldermort31-Mar-06 5:26 
GeneralRe: Problems again Pin
David Crow31-Mar-06 5:30
David Crow31-Mar-06 5:30 
GeneralRe: Problems again Pin
Waldermort31-Mar-06 5:58
Waldermort31-Mar-06 5:58 
QuestionRe: Problems again Pin
David Crow31-Mar-06 6:05
David Crow31-Mar-06 6:05 
AnswerRe: Problems again Pin
Waldermort31-Mar-06 6:17
Waldermort31-Mar-06 6:17 

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.