http://bugs.winehq.org/show_bug.cgi?id=31108
Bug #: 31108 Summary: Microshop 2.0 (.NET 2.0 app using System.Windows.Forms.WebBrowser) wants IWebBrowser2::Refresh Product: Wine Version: 1.5.7 Platform: x86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: ieframe AssignedTo: wine-bugs@winehq.org ReportedBy: focht@gmx.net Classification: Unclassified
Hello,
not really serious, it seems the exception is swallowed somewhere but still something that might be implemented in future.
Prerequisites: 'winetricks -q dotnet20sp1 mdac28 jet40'
It seems the app is a bit unstable on startup for unknown reasons (different symptoms), adding native 'gdiplus' makes it stable (might deserve an extra bug).
Exception info:
--- snip --- Exception object: 0ecb5c3c Exception type: System.NotImplementedException Message: The method or operation is not implemented. InnerException: <none> StackTrace (generated): <none> StackTraceString: <none> HResult: 80004001 --- snip ---
CLR stack:
--- snip --- OS Thread Id: 0x39 (0) ESP EIP 0033e66c 7b83953f [GCFrame: 0033e66c] 0033e6b4 7b83953f [GCFrame: 0033e6b4] 0033e78c 7b83953f [ComPlusMethodFrameStandaloneCleanup: 0033e78c] System.Windows.Forms.UnsafeNativeMethods+IWebBrowser2.Refresh() 0033e79c 115b558f System.Windows.Forms.WebBrowser.Refresh() 0033e7c8 115b553e System.Windows.Forms.WebBrowser.set_ScrollBarsEnabled(Boolean) 0033e7d4 115a38d7 Sabs.HttpSrv.Core.BrowserForm.a() 0033ea0c 115a33d4 Sabs.HttpSrv.Core.BrowserForm..ctor() 0033ea1c 115a32e6 Sabs.HttpSrv.Core.Application.a() 0033ea24 115a324e Sabs.HttpSrv.Core.Application.get_WebBrowser() 0033ea28 115a2139 MicroShop.Forms.frmMain.g(System.Object, System.EventArgs) 0033ea98 003dab01 [MulticastFrame: 0033ea98] System.EventHandler.Invoke(System.Object, System.EventArgs) 0033eaac 0e513c9c System.Windows.Forms.Form.OnLoad(System.EventArgs) 0033eadc 0e3555aa DevExpress.XtraEditors.XtraForm.OnLoad(System.EventArgs) 0033eae4 0e513889 System.Windows.Forms.Form.OnCreateControl() 0033eaec 029a74b1 System.Windows.Forms.Control.CreateControl(Boolean) 0033eb24 029a7295 System.Windows.Forms.Control.CreateControl() 0033eb30 0e510e7e System.Windows.Forms.Control.WmShowWindow(System.Windows.Forms.Message ByRef) 0033eb6c 029abf52 System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message ByRef) ... --- snip ---
Code:
http://source.winehq.org/git/wine.git/blob/82c826f6fc7a7684cad99501a9a5670b2...
--- snip --- 182 static HRESULT WINAPI InternetExplorer_Refresh(IWebBrowser2 *iface) 183 { 184 InternetExplorer *This = impl_from_IWebBrowser2(iface); 185 FIXME("(%p)\n", This); 186 return E_NOTIMPL; 187 } --- snip ---
Regards