Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Capturing Resing of Window event Pin
Adi Narayana10-Apr-04 1:53
Adi Narayana10-Apr-04 1:53 
GeneralShell Extension ....ICopyHook Interface Pin
ZarrinPour9-Apr-04 4:28
ZarrinPour9-Apr-04 4:28 
GeneralHiding Application from task list Pin
Anonymous9-Apr-04 4:02
Anonymous9-Apr-04 4:02 
GeneralRe: Hiding Application from task list Pin
2249179-Apr-04 4:28
2249179-Apr-04 4:28 
GeneralRe: Hiding Application from task list Pin
Prakash Nadar9-Apr-04 7:51
Prakash Nadar9-Apr-04 7:51 
GeneralRe: Hiding Application from task list Pin
Anonymous9-Apr-04 7:58
Anonymous9-Apr-04 7:58 
GeneralRe: Hiding Application from task list Pin
Prakash Nadar9-Apr-04 8:23
Prakash Nadar9-Apr-04 8:23 
GeneralRe: Hiding Application from task list Pin
Anonymous9-Apr-04 9:09
Anonymous9-Apr-04 9:09 
GeneralRe: Hiding Application from task list Pin
Prakash Nadar9-Apr-04 9:16
Prakash Nadar9-Apr-04 9:16 
GeneralRe: Hiding Application from task list Pin
2249179-Apr-04 18:57
2249179-Apr-04 18:57 
GeneralRe: Hiding Application from task list Pin
Prakash Nadar9-Apr-04 19:26
Prakash Nadar9-Apr-04 19:26 
GeneralRe: Hiding Application from task list Pin
2249179-Apr-04 21:06
2249179-Apr-04 21:06 
GeneralRe: Hiding Application from task list Pin
Anonymous9-Apr-04 8:00
Anonymous9-Apr-04 8:00 
GeneralRe: Hiding Application from task list Pin
ThatsAlok10-Apr-04 1:15
ThatsAlok10-Apr-04 1:15 
Generaldetermining control position in form Pin
kzyczynski9-Apr-04 3:53
kzyczynski9-Apr-04 3:53 
GeneralRe: determining control position in form Pin
David Crow9-Apr-04 5:15
David Crow9-Apr-04 5:15 
GeneralRe: determining control position in form Pin
kzyczynski9-Apr-04 8:31
kzyczynski9-Apr-04 8:31 
GeneralRe: determining control position in form Pin
Prakash Nadar9-Apr-04 9:06
Prakash Nadar9-Apr-04 9:06 
Questionbuild two more AddDocTemplate,can it ? Pin
vividtang9-Apr-04 3:47
vividtang9-Apr-04 3:47 
AnswerRe: build two more AddDocTemplate,can it ? Pin
2249179-Apr-04 4:43
2249179-Apr-04 4:43 
Generaloperator= understanding problem Pin
grscot9-Apr-04 3:23
grscot9-Apr-04 3:23 
GeneralRe: operator= understanding problem Pin
pie9-Apr-04 3:48
pie9-Apr-04 3:48 
GeneralRe: operator= understanding problem Pin
toxcct9-Apr-04 3:55
toxcct9-Apr-04 3:55 
in fact, the this pointer is needed because we can write such code :

Ratio r1, r2, r3;
 
<font style="color:green;">//...</font>
 
r1 = r2 = r3 = Ratio();

to do such cascading calls, the following operator=() must have a state of the precedent object...

Moreover, we need the r object because the reference anc the call owner are not necessary the sam, and as the member datas are private, you cannot acces them directly. however, a constructor have got permissions that other member function have, so it can read the data from r.den (for example) when another can't do so.


TOXCCT >>> GEII power


GeneralRe: operator= understanding problem Pin
Gary R. Wheeler9-Apr-04 4:07
Gary R. Wheeler9-Apr-04 4:07 
GeneralRe: operator= understanding problem Pin
toxcct9-Apr-04 4:10
toxcct9-Apr-04 4:10 

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.