I am assumging that you are using the BO translations through the user control. For grins, override the OnLoad of the user control and AFTER the MyBase.OnLoad(), reset the BO instances on the BBS.Protected Overrides Sub Onload()
MyBase.OnLoad()
MyBBS.BusinessObject = MyBO
End Sub
The instance of the BO may not be getting reset or reloaded dur to the translations. So this will ensure that it gets reset. Do the same for any other BO instances on the control.