AD
Administrator
Syncfusion Team
May 31, 2008 12:19 AM UTC
Maybe this will work for you. Instead of trying to update the grid cell, try to change the datarow directly.
Dim dr As DataRow = CType(cm.Current, DataRowView).Row
dr("PlatMap") = PMfile
If you still want to find the column index, you can try
dim colIndex as Integer = grid.Binder.NameToColIndex("PlatMap")