Set the default view button to List in the FileDialog.

This commit is contained in:
Pierre Mageau 1999-10-23 14:24:11 +00:00 committed by Alexandre Julliard
parent c715dea0b2
commit a454cd9d29
1 changed files with 3 additions and 0 deletions

View File

@ -829,6 +829,9 @@ static LRESULT FILEDLG95_InitUI(HWND hwnd)
ShowWindow(GetDlgItem(hwnd,IDC_OPENREADONLY),SW_HIDE);
}
/* List View is selected by default */
SendDlgItemMessageA(hwnd, IDC_LIST, BM_SETCHECK,(WPARAM) BST_CHECKED,0);
return 0;
}