When the user clicks on the properties menu in ieframe, launch inetcpl.cpl.
dlls/ieframe/iexplore.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dlls/ieframe/iexplore.c b/dlls/ieframe/iexplore.c index 08bb167..c1d0d74 100644 --- a/dlls/ieframe/iexplore.c +++ b/dlls/ieframe/iexplore.c @@ -402,6 +402,11 @@ static void ie_dialog_about(HWND hwnd) DestroyIcon(icon); } +static void ie_dialog_properties(HWND hwnd) +{ + ShellExecuteW(hwnd, NULL, L"inetcpl.cpl", NULL, NULL, 0); +}
+ static void add_tb_separator(HWND hwnd) { TBBUTTON btn; @@ -629,6 +634,10 @@ static LRESULT iewnd_OnCommand(InternetExplorer *This, HWND hwnd, UINT msg, WPAR case ID_BROWSE_QUIT: ShowWindow(hwnd, SW_HIDE); break; + + case ID_BROWSE_PROPERTIES: + ie_dialog_properties(hwnd); + break;