Click here to Skip to main content
15,891,933 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
RantRe: How to know from the current CWnd object if the Parent CWnd object has been sized PinPopular
Iain Clarke, Warrior Programmer12-Apr-10 7:41
Iain Clarke, Warrior Programmer12-Apr-10 7:41 
AnswerRe: How to know from the current CWnd object if the Parent CWnd object has been sized Pin
LittleYellowBird12-Apr-10 22:35
LittleYellowBird12-Apr-10 22:35 
QuestionMAPIReadNext works well but MAPIReadMail doesn´t work. Pin
SNArruda12-Apr-10 5:25
SNArruda12-Apr-10 5:25 
QuestionLarge icons in CDockingManager tabs (for side panes). Pin
Bartosz Bien12-Apr-10 4:09
Bartosz Bien12-Apr-10 4:09 
QuestionBooks Pin
humais12-Apr-10 3:48
humais12-Apr-10 3:48 
AnswerRe: Books Pin
Maximilien12-Apr-10 4:15
Maximilien12-Apr-10 4:15 
AnswerRe: Books Pin
Fareed Rizkalla12-Apr-10 6:29
Fareed Rizkalla12-Apr-10 6:29 
GeneralRe: Books Pin
Maximilien12-Apr-10 6:33
Maximilien12-Apr-10 6:33 
GeneralRe: Books Pin
humais12-Apr-10 7:36
humais12-Apr-10 7:36 
GeneralRe: Books Pin
Fareed Rizkalla12-Apr-10 15:27
Fareed Rizkalla12-Apr-10 15:27 
Questiondynamically linked STL Pin
vikramlinux12-Apr-10 2:41
vikramlinux12-Apr-10 2:41 
AnswerRe: dynamically linked STL Pin
CPallini12-Apr-10 2:56
mveCPallini12-Apr-10 2:56 
GeneralRe: dynamically linked STL Pin
vikramlinux12-Apr-10 3:20
vikramlinux12-Apr-10 3:20 
AnswerRe: dynamically linked STL Pin
Eugen Podsypalnikov12-Apr-10 2:59
Eugen Podsypalnikov12-Apr-10 2:59 
AnswerRe: dynamically linked STL Pin
Moak12-Apr-10 8:17
Moak12-Apr-10 8:17 
vikrams wrote:
Is it possible to link STL dynamically to my application?


No, because you should not use STL across library boundaries...without really knowing what you do. First of all is STL not a binary compatible interface, you must compile with exactly the same STL version in all modules/libraries/DLLs. There is probably no linker warning/error if you try otherwise. Secondly allocating memory in one module's heap and deallocating in another will fail, if you do not provide special allocators. In short, there is no easy way to use STL in exported interfaces.

Some more background:
The Old New Thing: Allocating and freeing memory across module boundaries[^]

Hope it helps! Smile | :)
/M

Webchat in Europe Java | [Coffee] Now with 26% more Twitter


QuestionDistance Vector Routing Algorithm Pin
GUD KESTO12-Apr-10 2:33
GUD KESTO12-Apr-10 2:33 
AnswerRe: Distance Vector Routing Algorithm Pin
CPallini12-Apr-10 2:49
mveCPallini12-Apr-10 2:49 
AnswerRe: Distance Vector Routing Algorithm Pin
jeron112-Apr-10 5:38
jeron112-Apr-10 5:38 
QuestionHiding a process from task manager processes tab Pin
Srivathsa_12-Apr-10 1:31
Srivathsa_12-Apr-10 1:31 
AnswerRe: Hiding a process from task manager processes tab Pin
Cedric Moonen12-Apr-10 1:45
Cedric Moonen12-Apr-10 1:45 
GeneralRe: Hiding a process from task manager processes tab Pin
Srivathsa_12-Apr-10 3:07
Srivathsa_12-Apr-10 3:07 
AnswerRe: Hiding a process from task manager processes tab Pin
CPallini12-Apr-10 2:07
mveCPallini12-Apr-10 2:07 
GeneralRe: Hiding a process from task manager processes tab Pin
Srivathsa_12-Apr-10 3:08
Srivathsa_12-Apr-10 3:08 
AnswerRe: Hiding a process from task manager processes tab Pin
@Intersect☺™12-Apr-10 2:29
professional@Intersect☺™12-Apr-10 2:29 
GeneralRe: Hiding a process from task manager processes tab Pin
Srivathsa_12-Apr-10 3:09
Srivathsa_12-Apr-10 3:09 

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.