Mar 15, 2003 #1 jonybd Programmer Nov 3, 2002 166 BE i wanted to messagebox textbox texts how to get the Edit Text or , Button (Hwnd ) ?? GetWindowText( youredithwnd, buffer, sizeof( buffer )); MessageBox( NULL, buffer, "hello", MB_OK );
i wanted to messagebox textbox texts how to get the Edit Text or , Button (Hwnd ) ?? GetWindowText( youredithwnd, buffer, sizeof( buffer )); MessageBox( NULL, buffer, "hello", MB_OK );
Mar 15, 2003 #2 palbano Programmer Oct 9, 1998 4,341 US Code: HWND GetDlgItem( HWND hDlg, int nIDDlgItem ); This is a fundamental windows user interface programming technique that is covered in virtually every beginners windows programming lesson. If you are not using a book or tutorial of some sort to learn windows programming your progress will be extremely slow. -pete Upvote 0 Downvote
Code: HWND GetDlgItem( HWND hDlg, int nIDDlgItem ); This is a fundamental windows user interface programming technique that is covered in virtually every beginners windows programming lesson. If you are not using a book or tutorial of some sort to learn windows programming your progress will be extremely slow. -pete