I have imported a few Foxpro tables to Sql and Sql converts the memo Fields to SQL Text type. If I add a new record and then undo I get an Index out of range exception. however if I close the form and do not save changes everything is happy.
Public Property [cucomment]() As System.StringGetReturn CType(Me.CurrentRow.Item("cucomment"), System.String) --> Exception hereEnd GetSet(ByVal value As System.String)Me.CurrentRow.Item("cucomment") = valueEnd SetEnd Property