Hi,
When I try to create New Project from PTWin, do nothing and close it, there is UndoException in class BusinessListBase being raised:
Private Sub UndoChanges(ByVal parentEditLevel As Integer) Implements Core.IUndoableObject.UndoChanges
Dim child As C
Dim index As Integer
If Me.EditLevel - 1 < parentEditLevel Then
*****ERROR RAISED HERE!
Throw New UndoException( _
String.Format(My.Resources.EditLevelMismatchException, "UndoChanges"))
End If
...
I try to debug and found that the error occur when trying to unbind the ProjectBindingSource in Rebind method.
I tried CSLA 3.5 and it is working fine, is it a bug in 3.5.1?
Thanks in advance.
Jason Law