AllowNull in TableStyles.GridColumnStyles ??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do you change the AllowNull in a datagridTextbox programmatically? One of my columns is set to false and the others true, and i cant change
thanks
 
The solution is NOT in the grid but in the underlying table.......

myDataSet.Tables(0).Columns(0).AllowDBNull = False


SubT said:
How do you change the AllowNull in a datagridTextbox programmatically?
One of my columns is set to false and the others true, and i cant change.
 
Back
Top