ControlGrid Selection

How to avoid mouse pointer (cursor) changing when mouse goes over a selected cell ? thanks a lot

2 Replies

AD Administrator Syncfusion Team May 20, 2003 07:10 AM UTC

If you want to avoid the Ole Drag cursor being shown, add the following lines at initialization time: [VB] GridControl1.ControllerOptions = GridControl1.ControllerOptions And Not (GridControllerOptions.OleDataSource Or GridControllerOptions.OleDropTarget) [C#] gridControl1.ControllerOptions &= ~(GridControllerOptions.OleDataSource|GridControllerOptions.OleDropTarget); This will turn off the OleDragDrop mouse controller. Stefan


AN Alexandre Nicholas May 20, 2003 09:19 AM UTC

Thanks a lot. i love your support bye

Loader.
Up arrow icon