001
28.09.2007, 18:26 Uhr
mmc20
puss in boots
|
hi,
C++: |
HWND hWndParent = ::FindWindow( NULL, _T("hier der name des fensters") );
|
damit haste schon mal das handle dann noch die childs... spy mal was das für welche sind, wenns zum bsp. edits sind und du das dritte brauchst :
C++: |
HWND hWnd1 = ::FindWindowEx( hWndParent, NULL, "Edit", NULL ); HWND hWnd2 = ::FindWindowEx( hWndParent, hWnd1, "Edit", NULL ); HWND hWnd3 = ::FindWindowEx( hWndParent, hWnd2, "Edit", NULL );
|
dann kannste senden:
C++: |
void C__testDlg::SendToHwnd( HWND hWnd, CString csText ) { for ( int i=0; i < csText .GetLength(); i++ ) ::SendMessage( hWnd, WM_CHAR, (TCHAR)csText .GetAt(i), 0 ); } // SendToHwnd( hWnd3, "das ist ein test" );
|
|