Here's what I use to set the ApprovedByID from within a separate BO.
Public
Me.ApprovedByEmployeeID = empID
' Check to see if a credit memo is linked to this problem review, if so mark it approved
loBO.FillByProblemReviewID(
loBO.ApprovedByEmployeeID = empID
loBO.Save()
The data is being persisted back to the database, but is not reflecting the change on the FormA after FormB is closed. Any help would be appreciated.
Thanks