G Guest Mar 9, 2004 #1 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
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
S Steve S Mar 11, 2004 #2 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? Click to expand... One of my columns is set to false and the others true, and i cant change.
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? Click to expand... One of my columns is set to false and the others true, and i cant change.