Click here to Skip to main content
15,920,438 members
Home / Discussions / ATL / WTL / STL
   

ATL / WTL / STL

 
GeneralRe: Signing ActiveX Controls Pin
Michael Dunn21-Jan-04 12:54
sitebuilderMichael Dunn21-Jan-04 12:54 
GeneralXP Themes not woking in an ActiveX control in IE Pin
Jason De Arte19-Jan-04 19:40
Jason De Arte19-Jan-04 19:40 
GeneralRe: XP Themes not woking in an ActiveX control in IE Pin
Michael Dunn20-Jan-04 12:57
sitebuilderMichael Dunn20-Jan-04 12:57 
GeneralRe: XP Themes not woking in an ActiveX control in IE Pin
Jason De Arte20-Jan-04 15:34
Jason De Arte20-Jan-04 15:34 
GeneralRe: XP Themes not woking in an ActiveX control in IE Pin
Michael Dunn21-Jan-04 13:03
sitebuilderMichael Dunn21-Jan-04 13:03 
GeneralRe: XP Themes not woking in an ActiveX control in IE Pin
Jason De Arte21-Jan-04 14:37
Jason De Arte21-Jan-04 14:37 
Generalputting template objects in a container Pin
Joo Andras19-Jan-04 3:33
Joo Andras19-Jan-04 3:33 
GeneralRe: putting template objects in a container Pin
Joaquín M López Muñoz19-Jan-04 6:15
Joaquín M López Muñoz19-Jan-04 6:15 
This can be handled in a number of ways that depend on what you want to do with these objects later. Probably the most obvious solution is to write an abstract class from which all X instantiations derive from, and use this as the type of the pointers stored in te container:
class X_base
{
  virtual foo()=0;
  ...
}
 
template <class T>
class X: public X_base
{
  ...
};
 
vector<X_base*> X_vector;
Is this suitable for you?

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
GeneralRe: putting template objects in a container Pin
Joo Andras19-Jan-04 21:14
Joo Andras19-Jan-04 21:14 
GeneralRe: putting template objects in a container Pin
Lim Bio Liong20-Jan-04 5:02
Lim Bio Liong20-Jan-04 5:02 
GeneralRe: putting template objects in a container Pin
Jörgen Sigvardsson19-Jan-04 12:15
Jörgen Sigvardsson19-Jan-04 12:15 
Generaldifferent template objects into a container Pin
Joo Andras19-Jan-04 3:27
Joo Andras19-Jan-04 3:27 
QuestionHow to load a MFC dll to a WTL project? Pin
freehawk18-Jan-04 15:21
freehawk18-Jan-04 15:21 
AnswerRe: How to load a MFC dll to a WTL project? Pin
Michael Dunn18-Jan-04 16:41
sitebuilderMichael Dunn18-Jan-04 16:41 
GeneralRe: How to load a MFC dll to a WTL project? Pin
freehawk18-Jan-04 16:53
freehawk18-Jan-04 16:53 
GeneralRe: How to load a MFC dll to a WTL project? Pin
Michael Dunn18-Jan-04 16:58
sitebuilderMichael Dunn18-Jan-04 16:58 
GeneralRe: How to load a MFC dll to a WTL project? Pin
freehawk18-Jan-04 17:18
freehawk18-Jan-04 17:18 
GeneralRe: How to load a MFC dll to a WTL project? Pin
Michael Dunn18-Jan-04 19:38
sitebuilderMichael Dunn18-Jan-04 19:38 
GeneralRe: How to load a MFC dll to a WTL project? Pin
freehawk18-Jan-04 19:48
freehawk18-Jan-04 19:48 
GeneralRe: How to load a MFC dll to a WTL project? Pin
Jörgen Sigvardsson19-Jan-04 12:10
Jörgen Sigvardsson19-Jan-04 12:10 
GeneralRe: How to load a MFC dll to a WTL project? Pin
freehawk19-Jan-04 13:34
freehawk19-Jan-04 13:34 
Generalmatching MFC and WTL Pin
lobanovski18-Jan-04 12:37
lobanovski18-Jan-04 12:37 
GeneralRe: matching MFC and WTL Pin
Jörgen Sigvardsson18-Jan-04 13:02
Jörgen Sigvardsson18-Jan-04 13:02 
GeneralSizing an ActiveX control?! Pin
mikewithersone17-Jan-04 2:34
mikewithersone17-Jan-04 2:34 
GeneralRe: Sizing an ActiveX control?! Pin
Jason De Arte19-Jan-04 19:23
Jason De Arte19-Jan-04 19:23 

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.