mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
Select the first user and system environment variable upon initialization.
svn path=/trunk/; revision=30095
This commit is contained in:
parent
782962b8cf
commit
6405278e8c
1 changed files with 9 additions and 6 deletions
|
@ -311,13 +311,14 @@ OnInitDialog(HWND hwndDlg)
|
||||||
HKEY_CURRENT_USER,
|
HKEY_CURRENT_USER,
|
||||||
_T("Environment"));
|
_T("Environment"));
|
||||||
|
|
||||||
(void)ListView_SetColumnWidth(hwndListView,2,LVSCW_AUTOSIZE_USEHEADER);
|
(void)ListView_SetColumnWidth(hwndListView, 2, LVSCW_AUTOSIZE_USEHEADER);
|
||||||
|
|
||||||
ListView_SetItemState(hwndListView,0,LVIS_FOCUSED,LVIS_FOCUSED);
|
ListView_SetItemState(hwndListView, 0,
|
||||||
|
LVIS_FOCUSED | LVIS_SELECTED,
|
||||||
|
LVIS_FOCUSED | LVIS_SELECTED);
|
||||||
|
|
||||||
(void)ListView_Update(hwndListView,0);
|
(void)ListView_Update(hwndListView,0);
|
||||||
|
|
||||||
|
|
||||||
/* Set system environment variables */
|
/* Set system environment variables */
|
||||||
hwndListView = GetDlgItem(hwndDlg, IDC_SYSTEM_VARIABLE_LIST);
|
hwndListView = GetDlgItem(hwndDlg, IDC_SYSTEM_VARIABLE_LIST);
|
||||||
|
|
||||||
|
@ -329,11 +330,13 @@ OnInitDialog(HWND hwndDlg)
|
||||||
HKEY_LOCAL_MACHINE,
|
HKEY_LOCAL_MACHINE,
|
||||||
_T("SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment"));
|
_T("SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment"));
|
||||||
|
|
||||||
(void)ListView_SetColumnWidth(hwndListView,2,LVSCW_AUTOSIZE_USEHEADER);
|
(void)ListView_SetColumnWidth(hwndListView, 2, LVSCW_AUTOSIZE_USEHEADER);
|
||||||
|
|
||||||
ListView_SetItemState(hwndListView,0,LVIS_FOCUSED,LVIS_FOCUSED);
|
ListView_SetItemState(hwndListView, 0,
|
||||||
|
LVIS_FOCUSED | LVIS_SELECTED,
|
||||||
|
LVIS_FOCUSED | LVIS_SELECTED);
|
||||||
|
|
||||||
(void)ListView_Update(hwndListView,0);
|
(void)ListView_Update(hwndListView, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue