Click here to Skip to main content
15,919,028 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
QuestionATL property problem Pin
Radu Sorin27-Apr-06 23:08
Radu Sorin27-Apr-06 23:08 
AnswerRe: ATL property problem Pin
Kurt _B28-Apr-06 5:25
Kurt _B28-Apr-06 5:25 
QuestionSTL allocators in shared memory Pin
psbasha27-Apr-06 4:07
psbasha27-Apr-06 4:07 
AnswerRe: STL allocators in shared memory Pin
Nemanja Trifunovic27-Apr-06 4:19
Nemanja Trifunovic27-Apr-06 4:19 
AnswerRe: STL allocators in shared memory Pin
Stephen Hewitt27-Apr-06 20:06
Stephen Hewitt27-Apr-06 20:06 
QuestionUsing CString in ATL Service Pin
MasthanRao27-Apr-06 3:21
MasthanRao27-Apr-06 3:21 
AnswerRe: Using CString in ATL Service Pin
RChin27-Apr-06 23:53
RChin27-Apr-06 23:53 
GeneralRe: Using CString in ATL Service Pin
MasthanRao28-Apr-06 1:05
MasthanRao28-Apr-06 1:05 
QuestionATL Exe Pin
Anthony988726-Apr-06 12:33
Anthony988726-Apr-06 12:33 
AnswerRe: ATL Exe Pin
Stephen Hewitt26-Apr-06 13:37
Stephen Hewitt26-Apr-06 13:37 
GeneralRe: ATL Exe Pin
Anthony988727-Apr-06 3:26
Anthony988727-Apr-06 3:26 
GeneralRe: ATL Exe Pin
Stephen Hewitt27-Apr-06 13:48
Stephen Hewitt27-Apr-06 13:48 
GeneralRe: ATL Exe Pin
Anthony988727-Apr-06 14:04
Anthony988727-Apr-06 14:04 
Questionhow to add code for user can adjust controls postion? Pin
CooperWu22-Apr-06 6:23
CooperWu22-Apr-06 6:23 
AnswerRe: how to add code for user can adjust controls postion? Pin
Michael Dunn22-Apr-06 9:17
sitebuilderMichael Dunn22-Apr-06 9:17 
GeneralRe: how to add code for user can adjust controls postion? Pin
CooperWu23-Apr-06 0:28
CooperWu23-Apr-06 0:28 
GeneralRe: how to add code for user can adjust controls postion? Pin
Jörgen Sigvardsson23-Apr-06 2:30
Jörgen Sigvardsson23-Apr-06 2:30 
GeneralRe: how to add code for user can adjust controls postion? Pin
Michael Dunn23-Apr-06 7:30
sitebuilderMichael Dunn23-Apr-06 7:30 
GeneralRe: how to add code for user can adjust controls postion? Pin
CooperWu23-Apr-06 18:29
CooperWu23-Apr-06 18:29 
GeneralRe: how to add code for user can adjust controls postion? Pin
CooperWu26-Apr-06 19:52
CooperWu26-Apr-06 19:52 
Hi Mike,
I am writing code for add a splitter now.
I downloaded WTL7.1 and setuped it. then add this includes into vc directories.

But, there are many errores happened when I add two include(atlapp.h and atlsplit.h) only.

the following text is error messages
--
D:\WTL71\INCLUDE\atlapp.h(397) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlapp.h(398) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlapp.h(596) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlapp.h(600) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlapp.h(601) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlapp.h(604) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlapp.h(845) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atluser.h(39) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atluser.h(39) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atluser.h(57) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atluser.h(82) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atluser.h(205) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atluser.h(490) : see reference to class template instantiation 'WTL::CMenuT<t_bmanaged>' being compiled
D:\WTL71\INCLUDE\atlgdi.h(78) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlgdi.h(86) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlgdi.h(88) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlgdi.h(528) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlgdi.h(682) : see reference to class template instantiation 'WTL::CBitmapT<t_bmanaged>' being compiled
D:\WTL71\INCLUDE\atlsplit.h(824) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlsplit.h(852) : see reference to class template instantiation 'WTL::CSplitterWindowImpl<t,t_bvertical,tbase,twintraits>' being compiled
D:\WTL71\INCLUDE\atlsplit.h(823) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlsplit.h(863) : see reference to class template instantiation 'WTL::CSplitterWindowT<t_bvertical>' being compiled
D:\WTL71\INCLUDE\atlsplit.h(823) : error C2872: 'ATL' : ambiguous symbol
D:\WTL71\INCLUDE\atlsplit.h(863) : see reference to class template instantiation 'WTL::CSplitterWindowT<t_bvertical>' being compiled
E:\Workspace_synviz\SynViz1.1\SynVizRGGantt\StdAfx.cpp(8) : error C2856: #pragma hdrstop cannot be inside an #if block
E:\Workspace_synviz\SynViz1.1\SynVizRGGantt\StdAfx.cpp(9) : error C2856: #pragma hdrstop cannot be inside an #if block
Error executing cl.exe.
--

ATL + WTL these confuse me deeply.
Thanks in advance.
GeneralRe: how to add code for user can adjust controls postion? Pin
Steve Echols26-Apr-06 20:21
Steve Echols26-Apr-06 20:21 
GeneralRe: how to add code for user can adjust controls postion? Pin
CooperWu26-Apr-06 20:30
CooperWu26-Apr-06 20:30 
GeneralRe: how to add code for user can adjust controls postion? Pin
Michael Dunn27-Apr-06 19:42
sitebuilderMichael Dunn27-Apr-06 19:42 
GeneralRe: how to add code for user can adjust controls postion? Pin
CooperWu27-Apr-06 19:58
CooperWu27-Apr-06 19:58 
Questionabout safe unsubclass window Pin
FlyWithYou21-Apr-06 20:02
FlyWithYou21-Apr-06 20:02 

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.