http://bugs.winehq.org/show_bug.cgi?id=21976
--- Comment #14 from Louis Lenders xerox_xerox2000@yahoo.co.uk 2010-03-22 12:51:38 --- (In reply to comment #11)
oh i tried already winetricks comctl32 a few minutes ago but with native comctl32 there are even MORE missing GUI elements - and the ones i'm missing are still not there :-(
Do you want a new logfile with native comctl?
I don't think that's gonna help. Maybe you could add a howto, how to reproduce the bug. I tried the app, but i don't know how to login.
As a last guess from my side: i was able to run the app with builtin mshtml (and shdocvw), by using the hack below. Maybe that could change the behaviour
diff --git a/dlls/mshtml/htmldoc.c b/dlls/mshtml/htmldoc.c index 12aa8c0..9d659ed 100644 --- a/dlls/mshtml/htmldoc.c +++ b/dlls/mshtml/htmldoc.c @@ -946,7 +946,7 @@ static HRESULT WINAPI HTMLDocument_execCommand(IHTMLDocument { HTMLDocument *This = HTMLDOC_THIS(iface); FIXME("(%p)->(%s %x %p)\n", This, debugstr_w(cmdID), showUI, pfRet); - return E_NOTIMPL; + return 0;//E_NOTIMPL; }
static HRESULT WINAPI HTMLDocument_execCommandShowHelp(IHTMLDocument2 *iface, B (END)