Click here to Skip to main content
15,893,190 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: pipes Pin
Prakash Nadar10-Apr-04 22:45
Prakash Nadar10-Apr-04 22:45 
GeneralRe: pipes Pin
toxcct11-Apr-04 0:31
toxcct11-Apr-04 0:31 
GeneralRe: pipes Pin
Anonymous11-Apr-04 0:35
Anonymous11-Apr-04 0:35 
GeneralRe: pipes Pin
Anonymous11-Apr-04 0:45
Anonymous11-Apr-04 0:45 
Generaladding your own class's overrideables to the overrideables page in vs.NET Pin
clayman8710-Apr-04 12:29
clayman8710-Apr-04 12:29 
GeneralRe: adding your own class's overrideables to the overrideables page in vs.NET Pin
CodeProjectSQ23-Jul-04 9:53
CodeProjectSQ23-Jul-04 9:53 
GeneralCString, class problem Pin
no_life10-Apr-04 10:03
no_life10-Apr-04 10:03 
GeneralRe: CString, class problem Pin
Renjith Ramachandran10-Apr-04 20:42
Renjith Ramachandran10-Apr-04 20:42 
Actually what you want,
You need a CString Value from child dialog to fill an edit control in parent dialog?

Assume CChildDlg is your child and CParentDlg is your parent dialog clasess

Let m_EditValue is the name of the Edit control variable in your parent Dlg,

m_csChildStringVariable is the CString variable in your child dialog declared as public

then
in parent dialog:
void CParentDlg ::OnOk()
{
CChildDlg oChild;
oChild.DoModal();
/*from that dialog you get some value for csChildStringVariable */
// set parent edit control
CString csTemp = oChild.m_csChildStringVariable;
m_EditValue.SetWindowText(csTemp );

}


try that..


I want to change Myself..Can u help me? Smile | :)
GeneralRe: CString, class problem Pin
no_life11-Apr-04 8:05
no_life11-Apr-04 8:05 
GeneralRe: CString, class problem Pin
Renjith Ramachandran11-Apr-04 21:41
Renjith Ramachandran11-Apr-04 21:41 
QuestionHow to get characters just deleted by BackSpace key(or Delete key) Pin
Truong D. Toan10-Apr-04 8:08
Truong D. Toan10-Apr-04 8:08 
AnswerRe: How to get characters just deleted by BackSpace key(or Delete key) Pin
Manikandan10-Apr-04 8:16
Manikandan10-Apr-04 8:16 
GeneralRe: How to get characters just deleted by BackSpace key(or Delete key) Pin
Truong D. Toan10-Apr-04 8:30
Truong D. Toan10-Apr-04 8:30 
GeneralRe: How to get characters just deleted by BackSpace key(or Delete key) Pin
Manikandan10-Apr-04 8:46
Manikandan10-Apr-04 8:46 
GeneralRe: How to get characters just deleted by BackSpace key(or Delete key) Pin
Truong D. Toan10-Apr-04 9:03
Truong D. Toan10-Apr-04 9:03 
GeneralRe: How to get characters just deleted by BackSpace key(or Delete key) Pin
Truong D. Toan11-Apr-04 20:27
Truong D. Toan11-Apr-04 20:27 
Generalgetline in richedit... Pin
Manikandan10-Apr-04 7:51
Manikandan10-Apr-04 7:51 
General[Newbie] A button with a bitmap Pin
mmica10-Apr-04 4:29
mmica10-Apr-04 4:29 
GeneralRe: [Newbie] A button with a bitmap Pin
Gary R. Wheeler10-Apr-04 5:06
Gary R. Wheeler10-Apr-04 5:06 
GeneralRe: [Newbie] A button with a bitmap Pin
csc10-Apr-04 5:24
csc10-Apr-04 5:24 
GeneralRe: [Newbie] A button with a bitmap Pin
toxcct10-Apr-04 5:40
toxcct10-Apr-04 5:40 
GeneralRe: [Newbie] A button with a bitmap Pin
Prakash Nadar10-Apr-04 5:43
Prakash Nadar10-Apr-04 5:43 
GeneralRe: [Newbie] A button with a bitmap Pin
mmica10-Apr-04 7:23
mmica10-Apr-04 7:23 
GeneralRe: [Newbie] A button with a bitmap Pin
Prakash Nadar10-Apr-04 16:06
Prakash Nadar10-Apr-04 16:06 
QuestionHow to find MAC of NIC Pin
Ko Lay10-Apr-04 4:15
sussKo Lay10-Apr-04 4:15 

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.