If you're adding the pages manually, then you can translate the business objects manually as well...MicroFour.StrataFrame.UI.Windows.Forms.BusinessObjectTranslator.TranslateBusinessObjects(MyFormBO, MyUserControlBO, "MyUserControlBO", Me, Me.UserControl1)
You can also call it from within the user control if you want...
However, there is no "untranslate" for this method, so the business objects are translated until the form is disposed.
You can also create a BusinessObjectTranslationCollection and pass it to the BusinessObjectTranslator to perform all of the translations within the collection. This method also has an Untranslate, so you can reverse the operation if necessary before you dispose of the form. The first method is easier (since you don't have to create and manage the collection) and you generally don't ever need to untranslate a business object... you just want it to stay the same until you close and dispose of the form.