Click here to Skip to main content
15,918,617 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: What good is KEY_CREATE_LINK? Pin
Ben Burnett21-Oct-01 6:07
Ben Burnett21-Oct-01 6:07 
QuestionA rounded MFC Dialog How? Pin
MaTrIX2k220-Oct-01 15:16
MaTrIX2k220-Oct-01 15:16 
AnswerRe: A rounded MFC Dialog How? Pin
Michael Dunn20-Oct-01 17:34
sitebuilderMichael Dunn20-Oct-01 17:34 
AnswerRe: A rounded MFC Dialog How? Pin
Michael P Butler21-Oct-01 3:22
Michael P Butler21-Oct-01 3:22 
QuestionMacro to get class name / function name? Pin
danwatt20-Oct-01 14:34
danwatt20-Oct-01 14:34 
AnswerRe: Macro to get class name / function name? Pin
Jim Crafton20-Oct-01 17:55
Jim Crafton20-Oct-01 17:55 
GeneralOOP Question - Passing Data Between Objects Pin
AJ12320-Oct-01 13:35
AJ12320-Oct-01 13:35 
GeneralRe: OOP Question - Passing Data Between Objects Pin
Ben Burnett21-Oct-01 6:15
Ben Burnett21-Oct-01 6:15 
// class B ////////<br />
class B {<br />
<br />
public:<br />
int getData () { return data; }<br />
<br />
private:<br />
int data; // B's data<br />
<br />
};<br />
<br />
// class A ////////<br />
class A {<br />
<br />
public:<br />
void printBData () { <br />
<br />
    int data = myB.getData ();<br />
    cout << "B's data: " << data << nl;<br />
<br />
}<br />
<br />
private:<br />
B myB;<br />
<br />
};


Ben Burnett

"It's all absolutely devastatingly true -- except the bits that are lies"
- Douglas Adams
GeneralRe: OOP Question - Passing Data Between Objects Pin
Andrew Peace21-Oct-01 11:05
Andrew Peace21-Oct-01 11:05 
QuestionTaskbar? Pin
MaTrIX2k220-Oct-01 9:58
MaTrIX2k220-Oct-01 9:58 
AnswerRe: Taskbar? Pin
Michael P Butler20-Oct-01 11:13
Michael P Butler20-Oct-01 11:13 
GeneralRe: Taskbar? Pin
MaTrIX2k220-Oct-01 11:46
MaTrIX2k220-Oct-01 11:46 
GeneralVariables under different class Pin
Kuniva20-Oct-01 6:52
Kuniva20-Oct-01 6:52 
GeneralRe: Variables under different class Pin
Michael P Butler20-Oct-01 11:17
Michael P Butler20-Oct-01 11:17 
GeneralFind a string in a file Pin
Maer72720-Oct-01 3:02
Maer72720-Oct-01 3:02 
GeneralRe: Find a string in a file Pin
NormDroid20-Oct-01 3:28
professionalNormDroid20-Oct-01 3:28 
GeneralRe: Find a string in a file Pin
Maer72720-Oct-01 3:58
Maer72720-Oct-01 3:58 
GeneralRe: Find a string in a file Pin
NormDroid20-Oct-01 4:02
professionalNormDroid20-Oct-01 4:02 
GeneralRe: Find a string in a file Pin
Maer72720-Oct-01 19:12
Maer72720-Oct-01 19:12 
GeneralPassing Pointers To Function In C++ Pin
AJ12320-Oct-01 2:26
AJ12320-Oct-01 2:26 
GeneralRe: Passing Pointers To Function In C++ Pin
Tim Deveaux20-Oct-01 5:04
Tim Deveaux20-Oct-01 5:04 
General*** Multiple Client Socket in MFC *** Pin
Salman Ahmad Khan20-Oct-01 0:24
Salman Ahmad Khan20-Oct-01 0:24 
GeneralRe: *** Multiple Client Socket in MFC *** Pin
NormDroid20-Oct-01 0:35
professionalNormDroid20-Oct-01 0:35 
GeneralRe: *** Multiple Client Socket in MFC *** Pin
Salman Ahmad Khan20-Oct-01 1:10
Salman Ahmad Khan20-Oct-01 1:10 
GeneralRe:First, learn TCP/IP! Pin
Masaaki Onishi20-Oct-01 11:51
Masaaki Onishi20-Oct-01 11: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.