Hello,
We just had an exception raised with one of our clients which seems to be a problem in the DevX code (NullReference).
We've not been able to reproduce, and the user just restarted and it was OK after that.
I appreciate this is a very old version, but do you know the cause, and if it has been fixed in later versions? We are in the process of upgrading to the latest versions.
Thanks
Paul Green
C#2015-05-14 13:05:01,198 [ErrorThread] ERROR MetaBit.Xilix.Core.Error.ErrorManager - UserMessage: Exception running XiliX
UserMessage: オブジェクト参照がオブジェクト インスタンスに設定されていません。
CurrentProcess: USER Handles=430
CurrentProcess: GUI Handles=435
Exception:
System.NullReferenceException: オブジェクト参照がオブジェクト インスタンスに設定されていません。
場所 DevExpress.Utils.Text.FontsCache.GetFontCacheByFont(Graphics graphics, Font font)
場所 DevExpress.XtraEditors.ViewInfo.BaseEditViewInfo.GetTextAscentHeight()
場所 DevExpress.XtraEditors.ViewInfo.TextEditViewInfo.CalcTextBaseline(Graphics g)
場所 DevExpress.XtraEditors.ViewInfo.TextEditViewInfo.CalcViewInfo(Graphics g)
場所 DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo.UpdateCellEditViewInfo(GridCellInfo cell, Point mousePos, Boolean canFastRecalculate, Boolean calc)
場所 DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo.CreateCellEditViewInfo(GridCellInfo cell, Boolean calc, Boolean allowCache)
場所 DevExpress.XtraGrid.Views.Grid.ViewInfo.GridViewInfo.RequestCellEditViewInfo(GridCellInfo cell)
場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRegularRowCell(GridViewDrawArgs e, GridCellInfo ci)
場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRegularRow(GridViewDrawArgs e, GridDataRowInfo ri)
場所 MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.DrawRegularRow(GridViewDrawArgs e, GridDataRowInfo ri) 場所 c:\Jenkins\jobs\xilixclient2_1_37\workspace\xml\MetaBit.Xilix.Xml\MetaBit.Xilix.XmlGrid\Grid\XGridViewPainter.cs:行 159
場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRow(GridViewDrawArgs e, GridRowInfo ri)
場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawRows(GridViewDrawArgs e)
場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.DrawContents(GridViewDrawArgs e)
場所 DevExpress.XtraGrid.Views.Grid.Drawing.GridPainter.Draw(ViewDrawArgs ee)
場所 MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.Draw(ViewDrawArgs ee) 場所 c:\Jenkins\jobs\xilixclient2_1_37\workspace\xml\MetaBit.Xilix.Xml\MetaBit.Xilix.XmlGrid\Grid\XGridViewPainter.cs:行 92
場所 DevExpress.XtraGrid.Views.Base.BaseView.Draw(GraphicsCache e)
場所 DevExpress.XtraGrid.GridControl.OnPaint(PaintEventArgs e)
場所 System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer)
場所 System.Windows.Forms.Control.WmPaint(Message& m)
場所 System.Windows.Forms.Control.WndProc(Message& m)
場所 DevExpress.XtraEditors.Container.EditorContainer.WndProc(Message& m)
場所 DevExpress.XtraGrid.GridControl.WndProc(Message& m)
場所 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
場所 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
場所 System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
Hi,
I cannot confirm that this issue is caused by our controls. It looks like it is not stably reproduced on your customer's side since you said that it disappeared after your customer restarted your application. I see that you use a custom GridControl since I found the MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.Draw and MetaBit.Xilix.XmlGrid.Grid.XGridViewPainter.DrawRegularRow methods in your call stack. Can your customer reproduce this issue if you replace your custom grid with a regular one? If not, it means that the issue lies in your custom grid implementation.
Another possible cause of such a problem is that you use multiple threads in your application and access a grid implicitly or explicitly from a background thread. Please check this point. In addition, I recommend that you review the Can I avoid the ArgumentOutOfRangeException when updating the Grid's data KB article.
I look forward to your response.
I have reverse engineered the applied logic and in all cases there was 1 common factor that is the cause of errors:
The error is the introduction of "DevExpress.Utils.Text.FontsCache.GetFontCacheByFont(Graphics graphics, Font font)".
This class shares windows fonts between threads and that is STRICTLY FORBIDDEN. Windows usage of GDI resources (during paint message handling but also stuff like "DevExpress.Utils.Text.TextUtils.GetStringSize(Graphics g, String text, Font font, StringFormat stringFormat, Int32 maxWidth, Int32 maxHeight, IWordBreakProvider wordBreakProvider, Boolean& isCropped)") is restricted to the thread that has created the GDI resource.
In other words: "Only the thread that has created a font or window may use it, all other threads are not allowed to send windows paint messages to those windows". Measuring the size of a font in a window is also some type of paint action (although invisible because only the size of the painted text is returned).
Solution (only one of both should be implemented):
Hello Stephan,
Thank you for sharing the result of your research with us. We greatly appreciate your feedback and want to discuss this problem further. I created a separate ticket on your behalf: T311768: FontsCache might be sharing GDI resources between different threads. Let us continue the conversation there.