Yes place the following code in the BO and it should work.
If Me.CurrentRow.RowState = DataRowState.Added Then '-- do your thing End If
Steve
Where do I do that at? In the BO or in the form?
I tried to add that code to CheckRulesOnCurrentRow in the BO and it didnt work.
Yes. You will need to look at the RowState of the row. It will look something like this:
If MyBO.CurrentDataTable(MyBo.CurrentRowIndex).RowState = Added Then '-- Put your testEnd If