Following is my code:
Dim row1 As Xceed.Grid.DataRow = grdGIV.DataRows.AddNew()
row1.BeginEdit()
Try
row1.Cells(“issue1”).Value = “test”
Catch ex As Exception
MsgBox(ex.Message)
End Try
row1.EndEdit()
I wonder how i coult not catch this above error message in the try catch block!! This message appears out of try catch block.
Anyone to find out?
Imported from legacy forums. Posted by PETE (had 556 views)