Yes. As Edhy has already answered in a previous thread of yours, you can change the PrimaryBusinessObject of the form in code whenever your panel manager page changes. Here is Edhy's response in that thread in case you missed it:----------------------
I Vikas,
If you want to go this route, then in the PanelManager.PageActivated event set the Form.PrimaryBusinessObject to the corresponding BO. Something like this may work, I have not tested
Private Sub PanelManager1_PageActivated(ByVal e As MicroFour.StrataFrame.UI.Windows.Forms.PanelPageEventArgs) Handles PanelManager1.PageActivated
Select Case Me.PanelManager1.CurrentPage.Name
Case Is = PageCustomers.Name
Me.PrimaryBusinessObject = Me.CustomersBO1
Case Is = PageOrders.Name
Me.PrimaryBusinessObject = Me.OrdersBO1
Case Is = PageOrderItems.Name
Me.PrimaryBusinesObject = Me.OrderItemsBO1
End Select