Author: gedmurphy Date: Mon Apr 17 21:11:51 2006 New Revision: 21638
URL: http://svn.reactos.ru/svn/reactos?rev=21638&view=rev Log: put cursor back into the text box if you skip too far. This always used to catch me out when rushing an install .... alas, it shall bug me no more :)
Modified: trunk/reactos/dll/win32/syssetup/wizard.c
Modified: trunk/reactos/dll/win32/syssetup/wizard.c URL: http://svn.reactos.ru/svn/reactos/trunk/reactos/dll/win32/syssetup/wizard.c?... ============================================================================== --- trunk/reactos/dll/win32/syssetup/wizard.c (original) +++ trunk/reactos/dll/win32/syssetup/wizard.c Mon Apr 17 21:11:51 2006 @@ -419,7 +419,10 @@ _T("Setup cannot continue until you enter your name."), _T("ReactOS Setup"), MB_ICONERROR | MB_OK); + + SetFocus(GetDlgItem(hwndDlg, IDC_OWNERNAME)); SetWindowLong(hwndDlg, DWL_MSGRESULT, -1); + return TRUE; }