In the Designer File I kept getting my Business Objects missing an END IF statement. Any Ideas?For Example:
Public Property [OnLoadAction]() As System.StringGetDim loValue As ObjectloValue =
Me.CurrentRow.Item("OnLoadAction")If loValue Is DBNull.Value ThenReturn String.EmptyElseReturn CType(loValue, System.String)End IfEnd GetSet(ByVal value As System.String)If value <> String.Empty ThenMe.CurrentRow.Item("OnLoadAction") = valueElseMe.CurrentRow.Item("OnLoadAction") = DBNull.Value>>>>>>>>>>>>>>>>>>>MISSING END IF HERE <<<<<<<<<<<<<<<<<<<<<<
End Set
End Property