The error provider itself is part of the StrataFrame form, not the business object, so you can use methods on the form to set the error provider if necessary like this:'-- Set a control in error
Me.SetErrorProvider(Me.TextBox1, "Error message")
'-- Clear error on control
Me.SetErrorProvider(Me.TextBox1, String.Empty)
'-- Clear the errors on all controls
Me.ClearErrorProvider()