Click here to Skip to main content
15,893,401 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Odd list box behaviour Pin
Roger Allen24-Jun-02 2:26
Roger Allen24-Jun-02 2:26 
GeneralRe: Odd list box behaviour Pin
Jason Hooper25-Jun-02 7:44
Jason Hooper25-Jun-02 7:44 
Generalinclude collision Pin
Zizilamoroso21-Jun-02 2:55
Zizilamoroso21-Jun-02 2:55 
GeneralRe: include collision Pin
Zizilamoroso21-Jun-02 3:04
Zizilamoroso21-Jun-02 3:04 
GeneralRe: include collision Pin
Alvaro Mendez21-Jun-02 6:16
Alvaro Mendez21-Jun-02 6:16 
GeneralRe: include collision Pin
Maximilien21-Jun-02 3:08
Maximilien21-Jun-02 3:08 
GeneralRe: include collision Pin
Zizilamoroso21-Jun-02 3:14
Zizilamoroso21-Jun-02 3:14 
GeneralRe: include collision Pin
Paresh Solanki21-Jun-02 5:18
Paresh Solanki21-Jun-02 5:18 
frisco wrote:
Class1.h needs definitions for CClass2 and Class2.h needs definitions for CClass1

Forward declaration will tell the compiler to expect this class definition later and allow it's use now

Class CClass2; // Fwd declared, but not defined yet
Class CClass1
{
// Stuff
// Ref to class 2 here
};

Class CClass2
{
// Other stuff
// Ref to class 1 here
};



Paresh Solanki
hombre que trabaja pierde tempo precioso "The man who works is losing precious time." Vuemme
GeneralRe: include collision Pin
Mike Nordell21-Jun-02 11:02
Mike Nordell21-Jun-02 11:02 
GeneralRe: include collision Pin
21-Jun-02 5:09
suss21-Jun-02 5:09 
QuestionWhere do i specify the colors in a bitmpa picture? Pin
redeemer21-Jun-02 2:37
redeemer21-Jun-02 2:37 
AnswerRe: Where do i specify the colors in a bitmpa picture? Pin
Chris Losinger21-Jun-02 2:48
professionalChris Losinger21-Jun-02 2:48 
GeneralRe: Where do i specify the colors in a bitmpa picture? Pin
redeemer21-Jun-02 3:29
redeemer21-Jun-02 3:29 
GeneralRe: Where do i specify the colors in a bitmpa picture? Pin
Chris Losinger21-Jun-02 3:42
professionalChris Losinger21-Jun-02 3:42 
GeneralPath of the running application Pin
21-Jun-02 2:16
suss21-Jun-02 2:16 
GeneralRe: Path of the running application Pin
Chris Losinger21-Jun-02 2:24
professionalChris Losinger21-Jun-02 2:24 
GeneralSerial Comms - Invalid Handle Pin
LittleYellowBird21-Jun-02 0:23
LittleYellowBird21-Jun-02 0:23 
GeneralRe: Serial Comms - Invalid Handle Pin
munklinde21-Jun-02 2:03
munklinde21-Jun-02 2:03 
Questionhow to set the text of a cell in a DataGrid Control Pin
21-Jun-02 0:20
suss21-Jun-02 0:20 
AnswerRe: how to set the text of a cell in a DataGrid Control Pin
yeeeooowww21-Jun-02 0:58
yeeeooowww21-Jun-02 0:58 
GeneralRe: how to set the text of a cell in a DataGrid Control Pin
Chen Jiadong21-Jun-02 1:19
Chen Jiadong21-Jun-02 1:19 
GeneralCompiler error using beginthreadex() Pin
21-Jun-02 0:16
suss21-Jun-02 0:16 
GeneralRe: Compiler error using beginthreadex() Pin
Nish Nishant21-Jun-02 0:31
sitebuilderNish Nishant21-Jun-02 0:31 
GeneralRe: Compiler error using beginthreadex() Pin
Joao Vaz21-Jun-02 0:32
Joao Vaz21-Jun-02 0:32 
GeneralRe: Link multithreaded DLL automatically (_beginthreadex)=? Pin
21-Jun-02 0:51
suss21-Jun-02 0:51 

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.