mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Select the first user and system environment variable upon initialization.
svn path=/trunk/; revision=30095
This commit is contained in:
@@ -311,13 +311,14 @@ OnInitDialog(HWND hwndDlg)
|
||||
HKEY_CURRENT_USER,
|
||||
_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);
|
||||
|
||||
|
||||
/* Set system environment variables */
|
||||
hwndListView = GetDlgItem(hwndDlg, IDC_SYSTEM_VARIABLE_LIST);
|
||||
|
||||
@@ -329,11 +330,13 @@ OnInitDialog(HWND hwndDlg)
|
||||
HKEY_LOCAL_MACHINE,
|
||||
_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);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user