diff --git a/dll/win32/mshtml/olecmd.c b/dll/win32/mshtml/olecmd.c index 96b3f4bb6b..5689509478 100644 --- a/dll/win32/mshtml/olecmd.c +++ b/dll/win32/mshtml/olecmd.c @@ -296,6 +296,12 @@ static HRESULT exec_print(HTMLDocument *This, DWORD nCmdexecopt, VARIANT *pvaIn, } } + // returning here fixes CORE-16884. Maybe use this until printing works. + ERR("Sorry, ReactOS does not support printing yet.\n"); + MessageBoxW(GetDesktopWindow(), L"Sorry, ReactOS does not support printing yet.", L"No Printing", MB_OK); + return S_OK; + + // For now if this is executed we get internal corruptions for unknown reasons. nsres = nsIWebBrowserPrint_Print(nsprint, settings, NULL); if(NS_FAILED(nsres)) ERR("Print failed: %08x\n", nsres);