shdocvw: Added InternetExplorer::put_Visible implementation.

This commit is contained in:
Jacek Caban 2006-04-19 20:36:32 +02:00 committed by Alexandre Julliard
parent 4027a1149c
commit c51aefdb58
1 changed files with 5 additions and 2 deletions

View File

@ -358,8 +358,11 @@ static HRESULT WINAPI InternetExplorer_get_Visible(IWebBrowser2 *iface, VARIANT_
static HRESULT WINAPI InternetExplorer_put_Visible(IWebBrowser2 *iface, VARIANT_BOOL Value)
{
InternetExplorer *This = WEBBROWSER_THIS(iface);
FIXME("(%p)->(%x)\n", This, Value);
return E_NOTIMPL;
TRACE("(%p)->(%x)\n", This, Value);
ShowWindow(This->frame_hwnd, Value ? SW_SHOW : SW_HIDE);
return S_OK;
}
static HRESULT WINAPI InternetExplorer_get_StatusBar(IWebBrowser2 *iface, VARIANT_BOOL *pBool)