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

Managed C++/CLI

 
GeneralRe: Converting from std::string to System::String^ Pin
flippydeflippydebop2-Apr-07 19:55
flippydeflippydebop2-Apr-07 19:55 
Questiondisable print screen button in key board Pin
nivasinfotech1-Apr-07 18:48
nivasinfotech1-Apr-07 18:48 
AnswerRe: disable print screen button in key board Pin
George L. Jackson2-Apr-07 14:58
George L. Jackson2-Apr-07 14:58 
Question(char*& Content) ? Pin
Software_Specialist1-Apr-07 7:53
Software_Specialist1-Apr-07 7:53 
AnswerRe: (char*& Content) ? Pin
Richard Andrew x641-Apr-07 8:37
professionalRichard Andrew x641-Apr-07 8:37 
GeneralRe: (char*& Content) ? Pin
Software_Specialist1-Apr-07 9:56
Software_Specialist1-Apr-07 9:56 
GeneralRe: (char*& Content) ? Pin
Software_Specialist1-Apr-07 9:57
Software_Specialist1-Apr-07 9:57 
GeneralRe: (char*& Content) ? Pin
Richard Andrew x641-Apr-07 10:06
professionalRichard Andrew x641-Apr-07 10:06 
A reference for something means that it can be used anywhere the original can be used, AND any changes to the reference are reflected in the original.

So for instance:

void func( int a, int& b )
{
   a ++;
   b ++;
}

int foo = 5, bar = 5;

func( foo, bar );


In this example, foo will remain unchanged because it was passed by value to the function, however, bar will reflect the increment because it was passed by reference.



--------------------------------

"All that is necessary for the forces of evil to win in the world is for enough good men to do nothing" -- Edmund Burke

AnswerRe: (char*& Content) ? Pin
lafleon4-Apr-07 10:30
lafleon4-Apr-07 10:30 
QuestionShowing a NotifyIcon Context Menu Pin
Richard Andrew x6431-Mar-07 18:57
professionalRichard Andrew x6431-Mar-07 18:57 
AnswerRe: Showing a NotifyIcon Context Menu Pin
Mark Salsbery1-Apr-07 7:39
Mark Salsbery1-Apr-07 7:39 
GeneralRe: Showing a NotifyIcon Context Menu Pin
Richard Andrew x641-Apr-07 8:32
professionalRichard Andrew x641-Apr-07 8:32 
GeneralRe: Showing a NotifyIcon Context Menu Pin
Mark Salsbery1-Apr-07 9:09
Mark Salsbery1-Apr-07 9:09 
GeneralRe: Showing a NotifyIcon Context Menu Pin
Richard Andrew x641-Apr-07 9:13
professionalRichard Andrew x641-Apr-07 9:13 
Questionerror LNK2005 Pin
thesad31-Mar-07 8:43
thesad31-Mar-07 8:43 
AnswerRe: error LNK2005 Pin
prasad_som31-Mar-07 18:41
prasad_som31-Mar-07 18:41 
GeneralRe: error LNK2005 Pin
thesad1-Apr-07 0:25
thesad1-Apr-07 0:25 
GeneralRe: error LNK2005 Pin
sarah_malik2-Apr-07 11:11
sarah_malik2-Apr-07 11:11 
QuestionURGENT Pin
tanchinchee31-Mar-07 5:38
tanchinchee31-Mar-07 5:38 
AnswerRe: URGENT Pin
Christian Graus1-Apr-07 14:44
protectorChristian Graus1-Apr-07 14:44 
QuestionWhat's wrong with database? Can anybody help? [modified] Pin
Badboy22TR30-Mar-07 22:48
Badboy22TR30-Mar-07 22:48 
AnswerRe: What's wrong with database? Can anybody help? Pin
Sahir Shah31-Mar-07 7:18
Sahir Shah31-Mar-07 7:18 
GeneralRe: What's wrong with database? Can anybody help? Pin
Badboy22TR31-Mar-07 12:35
Badboy22TR31-Mar-07 12:35 
GeneralRe: What's wrong with database? Can anybody help? Pin
Badboy22TR31-Mar-07 14:30
Badboy22TR31-Mar-07 14:30 
QuestionMFC classes problem Pin
FredrickNorge30-Mar-07 11:43
FredrickNorge30-Mar-07 11:43 

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.