Click here to Skip to main content
15,900,589 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: How do you traverse, or loop through the controls Pin
littleGreenDude27-Aug-07 6:09
littleGreenDude27-Aug-07 6:09 
QuestionRe: How do you traverse, or loop through the controls Pin
David Crow27-Aug-07 6:18
David Crow27-Aug-07 6:18 
AnswerRe: How do you traverse, or loop through the controls Pin
littleGreenDude27-Aug-07 7:48
littleGreenDude27-Aug-07 7:48 
GeneralRe: How do you traverse, or loop through the controls Pin
David Crow27-Aug-07 8:25
David Crow27-Aug-07 8:25 
AnswerRe: How do you traverse, or loop through the controls Pin
Stephen Hewitt27-Aug-07 18:32
Stephen Hewitt27-Aug-07 18:32 
QuestionPDA communication Pin
Waldermort27-Aug-07 5:34
Waldermort27-Aug-07 5:34 
GeneralRe: PDA communication Pin
Matthew Faithfull27-Aug-07 8:04
Matthew Faithfull27-Aug-07 8:04 
Questionpointer on char array Pin
baerten27-Aug-07 3:35
baerten27-Aug-07 3:35 
Hi everybody,

i made a buffer-CEdit where i rely a char* with a CEdit.

how can i store the char* from the View into the CEdit?

i create the View-Variables like this:
char *var = (char*)malloc(sizeof(char)*50);

My own CEdit derived texbox:
MyCEdit tbNumber  (Creation via DDX)

then i "link" the string with the Textbox
tbNumber.Link(&var);

where MyCEdit has a
char** InternBuffer;

and the "linkage" is made this way:
void MyCEdit::Link(char** var_t)
{
  InternBuffer = var_t;  
}


But it doesn't work, i tried some other possibilities, but i always get another pointer value Sigh | :sigh:

There is seriously a simple * mismatch

Thanks for help Smile | :)
AnswerRe: pointer on char array Pin
David Crow27-Aug-07 3:41
David Crow27-Aug-07 3:41 
GeneralRe: pointer on char array Pin
baerten27-Aug-07 4:03
baerten27-Aug-07 4:03 
GeneralRe: pointer on char array Pin
David Crow27-Aug-07 4:39
David Crow27-Aug-07 4:39 
AnswerRe: pointer on char array Pin
Russell'27-Aug-07 3:49
Russell'27-Aug-07 3:49 
GeneralRe: pointer on char array Pin
baerten27-Aug-07 3:57
baerten27-Aug-07 3:57 
GeneralRe: pointer on char array Pin
Russell'27-Aug-07 4:14
Russell'27-Aug-07 4:14 
QuestionRe: Strange Pin
baerten27-Aug-07 4:26
baerten27-Aug-07 4:26 
AnswerRe: Strange Pin
Russell'27-Aug-07 4:47
Russell'27-Aug-07 4:47 
GeneralRe: Strange Pin
baerten27-Aug-07 5:12
baerten27-Aug-07 5:12 
AnswerRe: pointer on char array Pin
KarstenK27-Aug-07 4:13
mveKarstenK27-Aug-07 4:13 
GeneralRe: pointer on char array Pin
baerten27-Aug-07 20:59
baerten27-Aug-07 20:59 
QuestionHighlighting a entire row Pin
Sangeetha_J27-Aug-07 3:35
Sangeetha_J27-Aug-07 3:35 
AnswerRe: Highlighting a entire row Pin
Hamid_RT27-Aug-07 3:59
Hamid_RT27-Aug-07 3:59 
QuestionProblem calling a function in RecordView's constructor Pin
__yash__27-Aug-07 3:29
professional__yash__27-Aug-07 3:29 
AnswerRe: Problem calling a function in RecordView's constructor Pin
David Crow27-Aug-07 3:38
David Crow27-Aug-07 3:38 
GeneralRe: Problem calling a function in RecordView's constructor Pin
__yash__27-Aug-07 3:44
professional__yash__27-Aug-07 3:44 
AnswerRe: Problem calling a function in RecordView's constructor Pin
KarstenK27-Aug-07 4:08
mveKarstenK27-Aug-07 4:08 

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.