Posts by Propeus • 1 point
1 post
-
0
votes6
answers15655
viewsA: Clear a datagridview in C#
I usually use Dataset (Ds) as Datasource in Datagridview (DGV) and when I want to clean the grid I use the DGV.DataSouce= Ds; Ds.Clear(); //Retira os valores da tabela mantendo os campos This way I…