I have some problem with DataGridView in C#.
case is:
I do some update on database then I reload DataGridView with new values:
myDataGridView.Dat
I came across Adam Nofsinger's answer before I encounterd the problem, but I used it anyway. It works wonderfull.
Just needed to add these 2 using lines to my class file:
using System.ComponentModel; using System.Windows.Forms;
Thanks, Geert.