Click here to Skip to main content
15,923,142 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CListCtrl and SetTextColor Pin
Maximilien25-Oct-02 5:32
Maximilien25-Oct-02 5:32 
GeneralRe: CListCtrl and SetTextColor Pin
Richard Hudson25-Oct-02 5:37
Richard Hudson25-Oct-02 5:37 
GeneralRe: CListCtrl and SetTextColor Pin
Michael Dunn25-Oct-02 20:34
sitebuilderMichael Dunn25-Oct-02 20:34 
QuestionPicture in a ListCtrl background ?? Pin
Cris25-Oct-02 5:04
Cris25-Oct-02 5:04 
AnswerRe: Picture in a ListCtrl background ?? Pin
Rob Caldecott25-Oct-02 6:21
Rob Caldecott25-Oct-02 6:21 
GeneralDecompression Pin
Jawache25-Oct-02 4:55
Jawache25-Oct-02 4:55 
GeneralRe: Decompression Pin
Ravi Bhavnani25-Oct-02 7:17
professionalRavi Bhavnani25-Oct-02 7:17 
GeneralArobat isn't closing Pin
pnpfriend25-Oct-02 4:10
pnpfriend25-Oct-02 4:10 
GeneralRe: Arobat isn't closing Pin
l a u r e n25-Oct-02 4:20
l a u r e n25-Oct-02 4:20 
GeneralRe: Arobat isn't closing Pin
pnpfriend25-Oct-02 4:29
pnpfriend25-Oct-02 4:29 
GeneralRe: Arobat isn't closing Pin
pba_25-Oct-02 11:40
pba_25-Oct-02 11:40 
GeneralpDlg->Create() hell in a dll Pin
Rohit  Sinha25-Oct-02 3:46
Rohit  Sinha25-Oct-02 3:46 
GeneralRe: pDlg->Create() hell in a dll Pin
User 665825-Oct-02 6:38
User 665825-Oct-02 6:38 
GeneralRe: pDlg->Create() hell in a dll Pin
Ravi Bhavnani25-Oct-02 7:11
professionalRavi Bhavnani25-Oct-02 7:11 
GeneralRe: pDlg->Create() hell in a dll Pin
Rohit  Sinha25-Oct-02 9:14
Rohit  Sinha25-Oct-02 9:14 
GeneralRe: pDlg->Create() hell in a dll Pin
Ravi Bhavnani25-Oct-02 9:33
professionalRavi Bhavnani25-Oct-02 9:33 
GeneralReadDirectoryChangesW() on a network drive Pin
Juan Carlos SM25-Oct-02 3:14
Juan Carlos SM25-Oct-02 3:14 
GeneralRe: ReadDirectoryChangesW() on a network drive Pin
Joel Lucsy25-Oct-02 3:34
Joel Lucsy25-Oct-02 3:34 
GeneralRe: ReadDirectoryChangesW() on a network drive Pin
Juan Carlos SM25-Oct-02 3:45
Juan Carlos SM25-Oct-02 3:45 
QuestionHow to send a customer HTTP request to a Web Server? Pin
George225-Oct-02 3:08
George225-Oct-02 3:08 
AnswerRe: How to send a customer HTTP request to a Web Server? Pin
Todd Smith25-Oct-02 6:55
Todd Smith25-Oct-02 6:55 
Questionhow to use a bmp in a toolbar button Pin
ns25-Oct-02 2:59
ns25-Oct-02 2:59 
GeneralGeneral C++ Inheritance Question Pin
Haakon S.25-Oct-02 2:11
Haakon S.25-Oct-02 2:11 
Lets say I want to do simulations on a group of animals of class CAnimal. First I define a group of dogs of class CDogs inheriting from CAnimals. Then I want to do the same with cats of class CCats, also inheriting from CAnimals, etc.

Lets say we have the following setup:

- A CAnimal object has member data and a set of pure virtual functions
- A CDog or CCat has only static member data in addition to member functions, including the virtual functions from CAnimal.

I would now like to have the ability to change between dogs and cats, i.e. redefine all my CAnimals from being dogs to cats. If I don't make my CDog and CCat destructors virtual, I can delete the dog/cat part and keep the CAnimal base class, but how can I change type?

I guess one way to do it is to take my array of dog objects and make a new array of cat objects and copy the animal part from dog to cat using assignement operator, and then delete may dog array. Or are there more elegant ways..?

Regards, Haakon S.
GeneralRe: General C++ Inheritance Question Pin
Maximilien25-Oct-02 2:32
Maximilien25-Oct-02 2:32 
GeneralRe: General C++ Inheritance Question Pin
Joaquín M López Muñoz25-Oct-02 2:49
Joaquín M López Muñoz25-Oct-02 2:49 

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.