Disabling "excel" box on active cell border

Using the SelectionMode.MultiExtended mode on my grid I get a wierd little side effect. When I click somewhere in the table and move the mouse to the edge of the active cell the mouse cursor changes to a rectangle. How do I disable that ? Thanks

4 Replies

AD Administrator Syncfusion Team August 22, 2003 05:50 AM UTC

In the grid's ControllerOptions property, turn off the OleDataSource flag. Me.gridControl1.ControllerOptions = Me.gridControl1.ControllerOptions And Not GridControllerOptions.OleDataSource


JI Jimmy August 22, 2003 06:10 AM UTC

Sorry but the VB syntax in your reply confuses me. Can you give the C# equivalent ? Thanks.


AD Administrator Syncfusion Team August 22, 2003 08:15 AM UTC

this.gridControl1.ControllerOptions = this.gridControl1.ControllerOptions & ~GridControllerOptions.OleDataSource;


AD Administrator Syncfusion Team August 22, 2003 08:16 AM UTC

Or, in the designer, you can just uncheck that flag on the grid's ControllerOptions property

Loader.
Up arrow icon