I have a form of a DataGridView that would take only one column entry from users, which is the Name column. The DateCreated (the second column) will be automatically entered by the system, so once a user want to enter a new name and presses enter, the DateCreated is automatically filled.
The data in the form is generated from a DataTable, and the DataTable content is in turn generated from a database. The thing is that the DateCreated columns is designed not to take null values, so when the DataSet was created the same constraint was enforced in the DataTable.
Can anyone please help with how to intercept the data in the DataGridView before it gets to the DataTable?
Thank you!