AD
Administrator
Syncfusion Team
February 18, 2003 09:27 PM UTC
You might check the property grid in the designer in case the AllowSelection property have been mis-set there.If it has, then commenting out your other setting will not affect things.
Try explicitly setting these two properties:
Me.GridDataBoundGrid1.AllowDragSelectedCols = true;
Me.GridDataBoundGrid1.AllowSelection = GridSelectionFlags.Any;
If this does not fix things, look for any mouse events you might be handling, and check to see if commenting out these handlers might get things working.