CodyF86 |
12-12-2017 07:56 AM |
Can you catch this null exception with an if check please?
I know you only support this for windows, but there is a large number (relatively) of people who run EQ under wine / mac. 1.0.3 works great under wine (along with EQ), but the latest version dies in a fireball (even on some windows machines) and here is why...if there is anyway you could update it sometime and catch this null pointer exception with an if check?
Code:
Unhandled Exception:
System.NullReferenceException: Object reference not set to an instance of an object
at System.Windows.Forms.WebBrowser.Refresh (System.Windows.Forms.WebBrowserRefreshOption opt) [0x00042] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.WebBrowser.Refresh () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e) [0x0004b] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e) [0x00008] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e) [0x00082] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e) [0x00008] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e) [0x00082] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.set_Enabled (System.Boolean value) [0x0003a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Enabled (bool)
at GamParse.MainScreen..ctor () [0x007be] in <d4d14c0e4407446dab057d17573ca4b1>:0
at (wrapper remoting-invoke-with-check) GamParse.MainScreen:.ctor ()
at GamParse.Program.Main () [0x0000e] in <d4d14c0e4407446dab057d17573ca4b1>:0
[ERROR] FATAL UNHANDLED EXCEPTION: System.NullReferenceException: Object reference not set to an instance of an object
at System.Windows.Forms.WebBrowser.Refresh (System.Windows.Forms.WebBrowserRefreshOption opt) [0x00042] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.WebBrowser.Refresh () [0x00000] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e) [0x0004b] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e) [0x00008] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e) [0x00082] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnParentEnabledChanged (System.EventArgs e) [0x00008] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.OnEnabledChanged (System.EventArgs e) [0x00082] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at System.Windows.Forms.Control.set_Enabled (System.Boolean value) [0x0003a] in <dfcf5e19b3744f6abc3507fe9dffa1dd>:0
at (wrapper remoting-invoke-with-check) System.Windows.Forms.Control:set_Enabled (bool)
at GamParse.MainScreen..ctor () [0x007be] in <d4d14c0e4407446dab057d17573ca4b1>:0
at (wrapper remoting-invoke-with-check) GamParse.MainScreen:.ctor ()
at GamParse.Program.Main () [0x0000e] in <d4d14c0e4407446dab057d17573ca4b1>:0
|