Click here to Skip to main content
15,921,169 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
GeneralRe: drawing tools problem using mfc.net Pin
Judah Gabriel Himango16-Sep-05 8:21
sponsorJudah Gabriel Himango16-Sep-05 8:21 
AnswerRe: drawing tools problem using mfc.net Pin
Christian Graus15-Sep-05 11:32
protectorChristian Graus15-Sep-05 11:32 
GeneralRe: drawing tools problem using mfc.net Pin
maktamcun16-Sep-05 16:22
maktamcun16-Sep-05 16:22 
GeneralRe: drawing tools problem using mfc.net Pin
Christian Graus18-Sep-05 11:02
protectorChristian Graus18-Sep-05 11:02 
Questionoperator '*' Pin
LiYS14-Sep-05 22:26
LiYS14-Sep-05 22:26 
AnswerRe: operator '*' Pin
prasad_som14-Sep-05 23:18
prasad_som14-Sep-05 23:18 
GeneralRe: operator '*' Pin
LiYS14-Sep-05 23:50
LiYS14-Sep-05 23:50 
GeneralRe: operator '*' Pin
prasad_som15-Sep-05 0:19
prasad_som15-Sep-05 0:19 
As other operators. Operator overloading meant for giving more meaning to UDT's.
For example you can see any smart pointer class.
You can use object of those classes and pointer.

e.g. CComPtr<someInterface> somePtr;
//somePtr is object evenif it can use operator -> and *
somePtr->someFn();
(*somePtr).someFn();


refer http://www.codeproject.com/cpp/ismart.asp[^]
GeneralRe: operator '*' Pin
bugDanny15-Sep-05 8:11
bugDanny15-Sep-05 8:11 
AnswerRe: operator '*' Pin
prasad_som15-Sep-05 18:48
prasad_som15-Sep-05 18:48 
GeneralRe: operator '*' Pin
bugDanny16-Sep-05 2:50
bugDanny16-Sep-05 2:50 
GeneralRe: operator '*' Pin
toxcct15-Sep-05 20:56
toxcct15-Sep-05 20:56 
QuestionNative vs Managed Pin
smch14-Sep-05 20:37
smch14-Sep-05 20:37 
AnswerRe: Native vs Managed Pin
Christian Graus15-Sep-05 11:33
protectorChristian Graus15-Sep-05 11:33 
Questionwhy the file is not opening? Pin
mcnu14-Sep-05 16:12
mcnu14-Sep-05 16:12 
AnswerRe: why the file is not opening? Pin
prasad_som14-Sep-05 19:40
prasad_som14-Sep-05 19:40 
GeneralRe: why the file is not opening? Pin
mcnu15-Sep-05 4:11
mcnu15-Sep-05 4:11 
GeneralRe: why the file is not opening? Pin
Achim Klein17-Sep-05 16:28
Achim Klein17-Sep-05 16:28 
GeneralRe: why the file is not opening? Pin
mcnu17-Sep-05 17:53
mcnu17-Sep-05 17:53 
QuestionActiveX and Windows C++ Pin
ashok12314-Sep-05 11:26
ashok12314-Sep-05 11:26 
QuestionC++ classes for CSV database Pin
simplysanju14-Sep-05 5:38
simplysanju14-Sep-05 5:38 
AnswerRe: C++ classes for CSV database Pin
Christian Graus14-Sep-05 11:25
protectorChristian Graus14-Sep-05 11:25 
AnswerRe: C++ classes for CSV database Pin
da_comp_learner15-Sep-05 19:20
da_comp_learner15-Sep-05 19:20 
GeneralRe: C++ classes for CSV database Pin
simplysanju15-Sep-05 21:32
simplysanju15-Sep-05 21:32 
QuestionProgramming &quot;Language&quot; Pin
LiYS13-Sep-05 23:39
LiYS13-Sep-05 23:39 

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.