Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ListBox?? Pin
David Fedolfi1-Feb-01 3:00
David Fedolfi1-Feb-01 3:00 
GeneralRe: ListBox?? Pin
Søren Alsbjerg Hørup1-Feb-01 8:51
Søren Alsbjerg Hørup1-Feb-01 8:51 
GeneralTab Control's Pin
30-Jan-01 10:29
suss30-Jan-01 10:29 
GeneralUSB.... Pin
Joseph Dempsey30-Jan-01 9:56
Joseph Dempsey30-Jan-01 9:56 
GeneralRe: USB.... Pin
Brendan Tregear30-Jan-01 11:43
Brendan Tregear30-Jan-01 11:43 
GeneralStatic class problem Pin
30-Jan-01 7:06
suss30-Jan-01 7:06 
GeneralRe: Static class problem Pin
Jason Douglas30-Jan-01 8:48
professionalJason Douglas30-Jan-01 8:48 
GeneralRe: Static class problem Pin
Michael Dunn30-Jan-01 15:13
sitebuilderMichael Dunn30-Jan-01 15:13 
You need to forward-declare class B before the definition of class A. (And BTW, your naming is confusing - a class "A" and a variable "A" together is a no-no if you care about readability.)
class B;  // forward declaration
 
class A : public Location
{ ... } objectA;
 
class B: public Location
{ ... } objectB;


--Mike--
http://home.inreach.com/mdunn/
Time is an illusion; lunchtime doubly so.
GeneralImplementing an undo Pin
30-Jan-01 5:43
suss30-Jan-01 5:43 
GeneralRe: Implementing an undo Pin
Christian Graus30-Jan-01 11:09
protectorChristian Graus30-Jan-01 11:09 
QuestionHow to store a put a template class into a CList object? Pin
leonwoo30-Jan-01 2:35
leonwoo30-Jan-01 2:35 
AnswerRe: How to store a put a template class into a CList object? Pin
Walter Gildersleeve30-Jan-01 5:02
Walter Gildersleeve30-Jan-01 5:02 
GeneralRe: How to store a put a template class into a CList object? Pin
leonwoo31-Jan-01 3:37
leonwoo31-Jan-01 3:37 
AnswerRe: How to store a put a template class into a CList object? Pin
Michael Dunn30-Jan-01 15:22
sitebuilderMichael Dunn30-Jan-01 15:22 
GeneralRe: How to store a put a template class into a CList object? Pin
leonwoo31-Jan-01 3:33
leonwoo31-Jan-01 3:33 
GeneralRe: How to store a put a template class into a CList object? Pin
Michael Dunn31-Jan-01 4:31
sitebuilderMichael Dunn31-Jan-01 4:31 
GeneralWindows NT Service vs. ATL Service EXE Pin
Nikhil29-Jan-01 23:49
Nikhil29-Jan-01 23:49 
GeneralCompiler Error Pin
Amit Dey29-Jan-01 23:35
Amit Dey29-Jan-01 23:35 
GeneralString across DLL's Pin
Amit Dey29-Jan-01 23:29
Amit Dey29-Jan-01 23:29 
GeneralRe: String across DLL's Pin
Chris Losinger30-Jan-01 4:00
professionalChris Losinger30-Jan-01 4:00 
GeneralLoad video from an IStream Pin
29-Jan-01 22:07
suss29-Jan-01 22:07 
GeneralProblem with a tree view !!! Pin
Walid MEDDEB29-Jan-01 21:59
Walid MEDDEB29-Jan-01 21:59 
GeneralActiveX Param Tag Values Pin
29-Jan-01 11:17
suss29-Jan-01 11:17 
GeneralA compiler error Pin
winyu29-Jan-01 7:37
winyu29-Jan-01 7:37 
GeneralRe: A compiler error Pin
Michael Dunn29-Jan-01 9:02
sitebuilderMichael Dunn29-Jan-01 9: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.