Is there any way to add a default value to a datagrid column(for the whole column - eg : system date) . I'm using vs2003 and datagrid and using dataadapter to update the grid.
Default value of DataColumn means you have created DataColumn without specifying a value for a property.
Following is the list:
Datatype= string
Maxlength=-1, (no maximum length check is performed)
Unique=False, it allows duplicate values
AllowDBNull=tru e, (DataColumn does not need to have any value)
Caption=the DatColumn object which is ColumnName property value.
Comment