Click here to Skip to main content
15,919,178 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralMaze program using recursive function UPDATED! Pin
lostlinkpr5-May-03 11:19
lostlinkpr5-May-03 11:19 
GeneralRe: Maze program using recursive function Pin
Nick Pirocanac5-May-03 11:48
Nick Pirocanac5-May-03 11:48 
GeneralRe: Maze program using recursive function Pin
Sean Cundiff5-May-03 11:49
Sean Cundiff5-May-03 11:49 
GeneralRe: Maze program using recursive function Pin
Joaquín M López Muñoz5-May-03 11:54
Joaquín M López Muñoz5-May-03 11:54 
GeneralDialog Question Pin
bmxracer5-May-03 10:54
bmxracer5-May-03 10:54 
GeneralRe: Dialog Question Pin
Ravi Bhavnani5-May-03 11:02
professionalRavi Bhavnani5-May-03 11:02 
GeneralRe: Dialog Question Pin
bmxracer5-May-03 11:34
bmxracer5-May-03 11:34 
GeneralRe: Dialog Question Pin
Chris Richardson5-May-03 12:46
Chris Richardson5-May-03 12:46 
Here ya go:

// This is the handler for the EN_CHANGE notification coming from the edit control.  You'll add this function with class wizard.
void CYourDialogBox::OnChangeSomeEditCtrl() 
{
   // Get the text from the edit control.  IDC_YOUR_EDIT_CONTROL_HERE is the ID you gave the control in the resource editor...you'll need to change it to the right ID.
   CString a_sMessage;
   GetDlgItem( IDC_YOUR_EDIT_CONTROL_HERE )->GetWindowText( a_sMessage );
   
   // Set the new caption of our window to "Your New Message - ....".
   CString a_sCaption( _T("Your New Message - " + a_sMessage );
   SetWindowText( a_sCaption );
}


Chris Richardson
Terrain Software
GeneralRe: Dialog Question Pin
bmxracer5-May-03 15:45
bmxracer5-May-03 15:45 
GeneralRe: Dialog Question Pin
bmxracer5-May-03 17:21
bmxracer5-May-03 17:21 
GeneralRe: Dialog Question Pin
Joan M5-May-03 21:14
professionalJoan M5-May-03 21:14 
Questionvariable row height in ListView ? Pin
JohnMcL5-May-03 10:02
JohnMcL5-May-03 10:02 
AnswerRe: variable row height in ListView ? Pin
valikac5-May-03 11:18
valikac5-May-03 11:18 
GeneralRe: variable row height in ListView ? Pin
JohnMcL5-May-03 13:38
JohnMcL5-May-03 13:38 
Generaldialog apps Pin
dave_long5-May-03 9:44
dave_long5-May-03 9:44 
GeneralRe: dialog apps Pin
Joaquín M López Muñoz5-May-03 9:53
Joaquín M López Muñoz5-May-03 9:53 
GeneralGDI+ problem Pin
Alex Boyce5-May-03 9:37
Alex Boyce5-May-03 9:37 
GeneralError handling Pin
Jerome Conus5-May-03 8:53
Jerome Conus5-May-03 8:53 
GeneralRe: Error handling Pin
valikac5-May-03 9:09
valikac5-May-03 9:09 
GeneralRe: Error handling Pin
Joaquín M López Muñoz5-May-03 9:10
Joaquín M López Muñoz5-May-03 9:10 
GeneralRe: Error handling Pin
Tim Smith5-May-03 9:30
Tim Smith5-May-03 9:30 
GeneralRe: Error handling Pin
Tim Smith5-May-03 9:23
Tim Smith5-May-03 9:23 
GeneralRe: Error handling Pin
Ryan Binns6-May-03 2:06
Ryan Binns6-May-03 2:06 
GeneralRe: Error handling Pin
David Chamberlain5-May-03 9:29
David Chamberlain5-May-03 9:29 
GeneralCEdit problem Pin
Jonas Ullberg5-May-03 8:35
Jonas Ullberg5-May-03 8:35 

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.