Immediately give focus to the Table on startup in the test program.

This commit is contained in:
Pietro Gagliardi 2015-01-07 21:36:03 -05:00
parent 7eaadad25c
commit 24790f0e7f
1 changed files with 1 additions and 0 deletions

View File

@ -36,6 +36,7 @@ BOOL mainwinCreate(HWND hwnd, LPCREATESTRUCT lpcs)
panic("(test program) error creating lfMessageFont HFONT");
SendMessageW(tablehwnd, WM_SETFONT, (WPARAM) font, TRUE);
}
SetFocus(tablehwnd);
return TRUE;
}