Click here to Skip to main content
15,908,166 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
AnswerRe: COM interfaces with ATL Pin
Ju@ncho22-Oct-07 8:28
Ju@ncho22-Oct-07 8:28 
QuestionAdding Images to the subitems in ListView Pin
D.Srihari16-Oct-07 1:36
D.Srihari16-Oct-07 1:36 
AnswerRe: Adding Images to the subitems in ListView Pin
Stuart Dootson16-Oct-07 2:09
professionalStuart Dootson16-Oct-07 2:09 
AnswerRe: Adding Images to the subitems in ListView Pin
Michael Dunn16-Oct-07 7:37
sitebuilderMichael Dunn16-Oct-07 7:37 
Questionconvert the string into german currency Pin
dews turner14-Oct-07 20:41
dews turner14-Oct-07 20:41 
AnswerRe: convert the string into german currency Pin
Stuart Dootson15-Oct-07 0:55
professionalStuart Dootson15-Oct-07 0:55 
QuestionSTL map constructor -- 3rd and 4th argument... Pin
devvvy13-Oct-07 17:02
devvvy13-Oct-07 17:02 
AnswerRe: STL map constructor -- 3rd and 4th argument... Pin
Stephen Hewitt14-Oct-07 15:59
Stephen Hewitt14-Oct-07 15:59 
devvvy wrote:
ALso. I don't understand the syntax (I know template...some) but
pair .... why "const"? that "pair" cannot change "Key"? Is that what it means?

Yes, the const means the key can't be changed in place. One of the design philosophies of STL’s contains is to only support efficient operations. A std::map is implemented as a binary tree and changing the key would require the entry to be removed from the tree and reinserted into a new position. This would also invalidate all iterators referring to the modified item. In short, it’s a consequence of the underlying data structures used.


Steve

AnswerRe: STL map constructor -- 3rd and 4th argument... Pin
Stuart Dootson14-Oct-07 20:53
professionalStuart Dootson14-Oct-07 20:53 
QuestionOwner draw combobox Pin
s196675m13-Oct-07 13:56
s196675m13-Oct-07 13:56 
QuestionDrag drop in MMC Pin
Thanks for all the fish10-Oct-07 20:30
Thanks for all the fish10-Oct-07 20:30 
QuestionThe file "atlbase.h" dosent exist in VS 2005 - What I need to do? Pin
yytg8-Oct-07 9:04
yytg8-Oct-07 9:04 
AnswerRe: The file "atlbase.h" dosent exist in VS 2005 - What I need to do? Pin
Stuart Dootson9-Oct-07 22:58
professionalStuart Dootson9-Oct-07 22:58 
GeneralRe: The file "atlbase.h" dosent exist in VS 2005 - What I need to do? Pin
yytg9-Oct-07 23:22
yytg9-Oct-07 23:22 
GeneralRe: The file "atlbase.h" dosent exist in VS 2005 - What I need to do? Pin
Stuart Dootson10-Oct-07 21:16
professionalStuart Dootson10-Oct-07 21:16 
GeneralRe: The file "atlbase.h" dosent exist in VS 2005 - What I need to do? Pin
yytg11-Oct-07 3:45
yytg11-Oct-07 3:45 
QuestionProblem with setting of value in ATL Property Page Pin
akizelokro7-Oct-07 20:38
akizelokro7-Oct-07 20:38 
QuestionProblem in passing a VARIANT to IXMLDOMNodePtr Pin
Rocky#7-Oct-07 20:27
Rocky#7-Oct-07 20:27 
AnswerRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
Michael Dunn7-Oct-07 21:18
sitebuilderMichael Dunn7-Oct-07 21:18 
GeneralRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
Rocky#7-Oct-07 21:31
Rocky#7-Oct-07 21:31 
AnswerRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
led mike8-Oct-07 4:25
led mike8-Oct-07 4:25 
GeneralRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
Rocky#8-Oct-07 18:33
Rocky#8-Oct-07 18:33 
AnswerRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
myshketer9-Oct-07 2:24
myshketer9-Oct-07 2:24 
GeneralRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
Rocky#9-Oct-07 18:25
Rocky#9-Oct-07 18:25 
GeneralRe: Problem in passing a VARIANT to IXMLDOMNodePtr Pin
myshketer9-Oct-07 21:30
myshketer9-Oct-07 21: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.