From 9ba82f014dae2ef79866a255c5bc26be3ab47b94 Mon Sep 17 00:00:00 2001 From: Gero Kuehn Date: Thu, 17 Jun 2004 21:23:50 +0000 Subject: [PATCH] added SetFocus call for the username dialog svn path=/trunk/; revision=9702 --- reactos/lib/syssetup/wizard.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/lib/syssetup/wizard.c b/reactos/lib/syssetup/wizard.c index 1cab53d1a37..bab00a73051 100644 --- a/reactos/lib/syssetup/wizard.c +++ b/reactos/lib/syssetup/wizard.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: wizard.c,v 1.3 2004/05/22 12:04:10 ekohl Exp $ +/* $Id: wizard.c,v 1.4 2004/06/17 21:23:50 kuehng Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries @@ -146,6 +146,9 @@ OwnerPageDlgProc(HWND hwndDlg, SendDlgItemMessage(hwndDlg, IDC_OWNERNAME, EM_LIMITTEXT, 50, 0); SendDlgItemMessage(hwndDlg, IDC_OWNERORGANIZATION, EM_LIMITTEXT, 50, 0); + + /* set focus to owner name */ + SetFocus(GetDlgItem(hwndDlg,IDC_OWNERNAME)); } break;