Click here to Skip to main content
15,913,773 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: destroying one view from another view - beginner Pin
Mike Upton10-Jul-02 4:43
Mike Upton10-Jul-02 4:43 
GeneralHOWTO: change .exe icon in Win32 apz (NOT MFC, C compiler) Pin
BlackSmith10-Jul-02 2:36
BlackSmith10-Jul-02 2:36 
GeneralRe: HOWTO: change .exe icon in Win32 apz (NOT MFC, C compiler) Pin
Rage10-Jul-02 5:37
professionalRage10-Jul-02 5:37 
GeneralRe: HOWTO: change .exe icon in Win32 apz (NOT MFC, C compiler) Pin
Roger Stewart10-Jul-02 5:58
professionalRoger Stewart10-Jul-02 5:58 
GeneralRe: HOWTO: change .exe icon in Win32 apz (NOT MFC, C compiler) Pin
BlackSmith10-Jul-02 13:38
BlackSmith10-Jul-02 13:38 
GeneralRe: HOWTO: change .exe icon in Win32 apz (NOT MFC, C compiler) Pin
Roger Stewart10-Jul-02 14:20
professionalRoger Stewart10-Jul-02 14:20 
GeneralupdateAllViews() - quick question Pin
ns10-Jul-02 2:15
ns10-Jul-02 2:15 
GeneralRe: updateAllViews() not in class wizard?? Pin
ns10-Jul-02 2:26
ns10-Jul-02 2:26 
GeneralRe: updateAllViews() - quick question Pin
peterchen10-Jul-02 4:03
peterchen10-Jul-02 4:03 
GeneralSockect Programming in C Pin
vin10-Jul-02 1:50
vin10-Jul-02 1:50 
GeneralRe: Sockect Programming in C Pin
Nish Nishant10-Jul-02 2:00
sitebuilderNish Nishant10-Jul-02 2:00 
GeneralRe: Sockect Programming in C Pin
Brian Azzopardi10-Jul-02 3:10
Brian Azzopardi10-Jul-02 3:10 
GeneralRe: Sockect Programming in C Pin
Marshall10-Jul-02 3:15
Marshall10-Jul-02 3:15 
Generallist control with checkboxes - newbie Pin
ns10-Jul-02 1:37
ns10-Jul-02 1:37 
GeneralRe: list control with checkboxes - newbie Pin
Mike Upton10-Jul-02 4:08
Mike Upton10-Jul-02 4:08 
GeneralRe: list control with checkboxes Thanks!!! Pin
ns10-Jul-02 4:24
ns10-Jul-02 4:24 
Generalstarting the MDI app with two views - beginner Pin
ns10-Jul-02 1:34
ns10-Jul-02 1:34 
QuestionChildren in back? Pin
Dov Sherman10-Jul-02 0:52
Dov Sherman10-Jul-02 0:52 
AnswerRe: Children in back? Pin
Rage10-Jul-02 5:41
professionalRage10-Jul-02 5:41 
GeneralRe: Children in back? Pin
Dov Sherman10-Jul-02 12:00
Dov Sherman10-Jul-02 12:00 
GeneralCombo Box showing Directories & Files Pin
Shibu.V.Nair10-Jul-02 0:12
Shibu.V.Nair10-Jul-02 0:12 
GeneralRe: Combo Box showing Directories & Files Pin
DanielP10-Jul-02 8:52
DanielP10-Jul-02 8:52 
GeneralGetting the back ground colour of a Dialog Pin
Shibu.V.Nair10-Jul-02 0:00
Shibu.V.Nair10-Jul-02 0:00 
GeneralRe: Getting the back ground colour of a Dialog Pin
Dov Sherman10-Jul-02 0:46
Dov Sherman10-Jul-02 0:46 
GeneralBeginner's Template question! Pin
Wayne Jin9-Jul-02 23:40
Wayne Jin9-Jul-02 23:40 
Try to declare a template class as below, But it can't pass the compiling.
(Using MS VC++ 6.0)

template < class ClassType, typename DataType > class MyContainer :
public ClassType < DataType >
{
...
}

only while I change it to something like this, it works.

template < typename DataType > class MyContainer :
public vector < DataType >
{
...
}

But my purpose is to support vector, list, queue and deque in a single
template class. Does anyone know how to make it?

Any commment greatly appreciated!

Wayne King
10 Jul 2002

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.