Dump file error: How to understand this


Please find this error message from Microsoft
relating Syncfusion issue,so we are unable to
solve the issue with iGrid,

Shall anyone help me to understand this issue?


Exception dump :
NativeErrorCode = 14
ErrorCode = -2147467259
Message = Erreur lors de la création d'un handle de fenêtre.
Data = System.Collections.ListDictionaryInternal
TargetSite = Void CreateHandle(System.Windows.Forms.CreateParams)
StackTrace = à System.Windows.Forms.NativeWindow.CreateHandle(CreateParams cp)
à System.Windows.Forms.Control.CreateHandle()
à System.Windows.Forms.Control.get_Handle()
à System.Windows.Forms.Control.RectangleToScreen(Rectangle r)
à Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlDragHeaderMouseController.HitTest(MouseEventArgs e, IMouseController controller)
à Syncfusion.Windows.Forms.MouseControllerDispatcher.HitTest(Point point, MouseButtons mouseButton, Int32 clicks, IMouseController& controller)
à Syncfusion.Windows.Forms.MouseControllerDispatcher.ProcessMouseMove(MouseEventArgs e)
à Syncfusion.Windows.Forms.ScrollControllMouseControllerDispatcher.ScrollControlMouseMoveHandled(Object sender, MouseEventArgs e)
à Syncfusion.Windows.Forms.ScrollControl.OnScrollControlHandledMouseMove(MouseEventArgs e)
à Syncfusion.Windows.Forms.ScrollControl.OnMouseMove(MouseEventArgs e)
à Syncfusion.Windows.Forms.Grid.GridControlBase.OnMouseMove(MouseEventArgs e)
à Syncfusion.Windows.Forms.Grid.Grouping.GridTableControl.OnMouseMove(MouseEventArgs e)
à System.Windows.Forms.Control.WmMouseMove(Message& m)
à System.Windows.Forms.Control.WndProc(Message& m)
à Syncfusion.Windows.Forms.ScrollControl.WndProc(Message& msg)
à Syncfusion.Windows.Forms.Grid.GridControlBase.WndProc(Message& msg)
à Syncfusion.Windows.Forms.Grid.Grouping.GridTableControl.WndProc(Message& msg)
à 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)
Source = System.Windows.Forms
HResult = -2147467259
IsTransient = False



1 Reply

JS Jeba S Syncfusion Team February 12, 2008 08:48 AM UTC

Hi Manjesh,

Thank you for posting query to us.

If you have custom mouse controller in your application please remove the current mouse controller and add the new mouse controller in the MouseControllerDispatcher's Add method.


this.gridGroupingControl1.TableControl.MouseControllerDispatcher.Remove(controller);
this.gridGroupingControl1.TableControl.MouseControllerDispatcher.Add(new MyGridSelectCellsMouseController(this.gridGroupingControl1.TableControl));


Please try calling "this.gridGroupingControl1.TableControl.Initialize()" after the call to InitializeComponent() in the Form's constructor.

If still any issue exists, please provide some more details in which situation you are getting this error. This will help us to trace the problem and provide you a solution.

Thanks,
Jeba.




Loader.
Up arrow icon