Click here to Skip to main content
15,889,216 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: dodgy serial communication Pin
macmac388-Sep-03 1:28
macmac388-Sep-03 1:28 
Questioncan not access the calss view???? Pin
wow99997-Sep-03 16:44
wow99997-Sep-03 16:44 
AnswerRe: can not access the calss view???? Pin
PengFeidu7-Sep-03 20:00
PengFeidu7-Sep-03 20:00 
AnswerRe: can not access the calss view???? Pin
Fredrik Skog7-Sep-03 20:24
Fredrik Skog7-Sep-03 20:24 
AnswerRe: can not access the calss view???? Pin
Hari Krishnan (Noida)7-Sep-03 20:37
Hari Krishnan (Noida)7-Sep-03 20:37 
GeneralHelp! Problem loading BITMAP into the Custom Dialog Pin
colormyiris7-Sep-03 16:21
colormyiris7-Sep-03 16:21 
GeneralWindows memory mapping question Pin
Kuniva7-Sep-03 10:00
Kuniva7-Sep-03 10:00 
GeneralRe: Windows memory mapping question Pin
Dave Bryant7-Sep-03 14:37
Dave Bryant7-Sep-03 14:37 
The portable executable format (PE) has an export table in it which has an entry for every DLL function that is called. When you call a DLL function within your code, at compile time this calls a method in this export table - it does not call the DLL directly. When the executable is loaded into memory, the required DLLs are then loaded as well (except if delayed-loading is on), and at that point Windows updates the export table so that it refers to the loaded location of the functions within the DLL. The advantage of this approach is that each DLL function is only called from one location, making it very fast to perform this update. If an export table were not used, Windows would have to scan through the entire executable looking for references to the DLL to update.

Consequently this means that you won't come across a jump to a memory location that doesn't exist (due to a DLL function call), as within the assembly code they will be jumps to the export table instead.

Dave
http://www.cloudsofheaven.org
GeneralRe: Windows memory mapping question Pin
Kuniva7-Sep-03 22:28
Kuniva7-Sep-03 22:28 
Generala perplexing access violation... I just wanna be tidy! ;-) Pin
ENewton7-Sep-03 8:25
ENewton7-Sep-03 8:25 
GeneralRe: a perplexing access violation... I just wanna be tidy! ;-) Pin
Taka Muraoka7-Sep-03 8:54
Taka Muraoka7-Sep-03 8:54 
GeneralRe: a perplexing access violation... I just wanna be tidy! ;-) Pin
ENewton7-Sep-03 9:39
ENewton7-Sep-03 9:39 
GeneralRe: a perplexing access violation... I just wanna be tidy! ;-) Pin
Taka Muraoka7-Sep-03 9:41
Taka Muraoka7-Sep-03 9:41 
GeneralRe: a perplexing access violation... I just wanna be tidy! ;-) Pin
ENewton7-Sep-03 10:05
ENewton7-Sep-03 10:05 
GeneralRe: a perplexing access violation... I just wanna be tidy! ;-) Pin
Ted Ferenc7-Sep-03 12:26
Ted Ferenc7-Sep-03 12:26 
GeneralRe: a perplexing access violation... I just wanna be tidy! ;-) Pin
Gary R. Wheeler7-Sep-03 12:30
Gary R. Wheeler7-Sep-03 12:30 
GeneralConverting a MFC CView app to an ActiveX control Pin
AJ1237-Sep-03 7:29
AJ1237-Sep-03 7:29 
GeneralRe: Converting a MFC CView app to an ActiveX control Pin
igor19607-Sep-03 10:34
igor19607-Sep-03 10:34 
GeneralDomains and Workgroups List Pin
Frank Deo7-Sep-03 7:20
Frank Deo7-Sep-03 7:20 
GeneralRe: Domains and Workgroups List Pin
Frank Deo7-Sep-03 9:56
Frank Deo7-Sep-03 9:56 
GeneralReferencing "internal" resources in MFC Pin
Antti Keskinen7-Sep-03 5:28
Antti Keskinen7-Sep-03 5:28 
GeneralRe: Referencing "internal" resources in MFC Pin
Michael Dunn7-Sep-03 8:17
sitebuilderMichael Dunn7-Sep-03 8:17 
GeneralRe: Referencing "internal" resources in MFC Pin
PJ Arends7-Sep-03 8:21
professionalPJ Arends7-Sep-03 8:21 
GeneralRe: Referencing "internal" resources in MFC Pin
Antti Keskinen7-Sep-03 10:45
Antti Keskinen7-Sep-03 10:45 
GeneralRe: Referencing "internal" resources in MFC Pin
Michael Dunn7-Sep-03 13:07
sitebuilderMichael Dunn7-Sep-03 13: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.