Click here to Skip to main content
15,898,222 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: Problem with 'Delete' key. Pin
David Crow23-Jan-08 2:50
David Crow23-Jan-08 2:50 
GeneralRe: Problem with 'Delete' key. Pin
Sanjay K23-Jan-08 17:03
Sanjay K23-Jan-08 17:03 
GeneralRe: Problem with 'Delete' key. Pin
David Crow24-Jan-08 2:40
David Crow24-Jan-08 2:40 
GeneralRe: Problem with 'Delete' key. Pin
Nitheesh George23-Jan-08 17:24
Nitheesh George23-Jan-08 17:24 
GeneralRe: Problem with 'Delete' key. Pin
Sanjay K24-Jan-08 4:31
Sanjay K24-Jan-08 4:31 
GeneralTwo functions send arguments to a single function. Pin
CodingLover22-Jan-08 23:27
CodingLover22-Jan-08 23:27 
GeneralRe: Two functions send arguments to a single function. Pin
Rajesh R Subramanian22-Jan-08 23:38
professionalRajesh R Subramanian22-Jan-08 23:38 
QuestionRe: Two functions send arguments to a single function. Pin
CPallini22-Jan-08 23:43
mveCPallini22-Jan-08 23:43 
what about:
void getName( string & name)
{
//  name = whatever;
}
char getGender()
{
 // return 'F'; 
 // or (as appropriate)
 // return = 'M';
}

and then
string name;
char gender;
getName(name);
gender = getGender();
addData(name, gender);


?

If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

[my articles]


GeneralRe: Two functions send arguments to a single function. Pin
CodingLover23-Jan-08 0:24
CodingLover23-Jan-08 0:24 
QuestionRe: Two functions send arguments to a single function. Pin
CPallini23-Jan-08 0:43
mveCPallini23-Jan-08 0:43 
GeneralRe: Two functions send arguments to a single function. Pin
Rajesh R Subramanian23-Jan-08 0:50
professionalRajesh R Subramanian23-Jan-08 0:50 
GeneralRe: Two functions send arguments to a single function. Pin
CPallini23-Jan-08 0:57
mveCPallini23-Jan-08 0:57 
GeneralRe: Two functions send arguments to a single function. Pin
Rajesh R Subramanian23-Jan-08 1:05
professionalRajesh R Subramanian23-Jan-08 1:05 
GeneralRe: Two functions send arguments to a single function. Pin
David Crow23-Jan-08 2:48
David Crow23-Jan-08 2:48 
QuestionMenu bar problem Pin
trioum22-Jan-08 22:58
trioum22-Jan-08 22:58 
GeneralRe: Menu bar problem Pin
KarstenK23-Jan-08 1:16
mveKarstenK23-Jan-08 1:16 
GeneralRe: Menu bar problem Pin
Nitheesh George23-Jan-08 23:05
Nitheesh George23-Jan-08 23:05 
QuestionATL CImage class issue Pin
Antonyemac22-Jan-08 22:30
Antonyemac22-Jan-08 22:30 
GeneralRe: ATL CImage class issue Pin
Mark Salsbery23-Jan-08 6:42
Mark Salsbery23-Jan-08 6:42 
Questionhow to save a file? Pin
gentleguy22-Jan-08 22:27
gentleguy22-Jan-08 22:27 
AnswerRe: how to save a file? Pin
CPallini22-Jan-08 22:58
mveCPallini22-Jan-08 22:58 
GeneralRe: how to save a file? Pin
gentleguy23-Jan-08 1:32
gentleguy23-Jan-08 1:32 
GeneralRe: how to save a file? Pin
CPallini23-Jan-08 2:10
mveCPallini23-Jan-08 2:10 
GeneralRe: how to save a file? Pin
gentleguy23-Jan-08 2:16
gentleguy23-Jan-08 2:16 
GeneralRe: how to save a file? Pin
CPallini23-Jan-08 2:20
mveCPallini23-Jan-08 2:20 

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.