I have run into an unusual error. I have a grid with a number of columns in it, one of which is a hyperlink bringing up a dialog that is subsequently closed leading to the issue. After this dialog is closed the frist click on a column header leads to an error. This does not happen eother before the dialog is broght up or after the error is generated the first time. The dialog receives a link to the dataset behind the grid. A Dialogs that does not reference the dataset does not genate the issue. I use a custome class defined to pass a parameter
Public Sub New(ByVal oEWAD As EmployeeWeekAssignmentData)
that contains a dataset as a property
Private WithEvents moEWAD As EmployeeWeekAssignmentData
Public Property DS As C1.Silverlight.Data.DataSet
and the dataset is assigned as the itemsource for the datagridview
Public Sub New(ByVal oEWAD As EmployeeWeekAssignmentData)
that contains a dataset as a property
Private WithEvents moEWAD As EmployeeWeekAssignmentData
Public Property DS As C1.Silverlight.Data.DataSet
and the dataset is assigned as the itemsource for the datagridview
Dim oDS As New C1.Silverlight.Data.DataSet
oDS.ReadXmlFromString(e.Result.XML)
Me.grdTimeSheet.ItemsSource = oDS.Tables(0).DefaultView
Does anyone have an idea as to how I can catch this issue and prevent it?