i want to add row in datagridview if item not exist. for eg
col1
------------
Ather |
------------
Bilal |
------------
if "ather" already exist in the gridview than not add any row.
this is my code where i want to check (in dataTable1 name appear multiple times)
Grid_StudentName.Rows.Add(dtStudentNames.Rows(k).Item(
"Student_Name").ToString)
thanks
Ather