'-- Set the BO to populate (otherwise an error will occur)myBrw.BusinessObjectToPopulate = myBO
'-- Show the BrowseIf myBrw.ShowDialog() = OK Then '-- Create and show the form. Pass over the populated BO and then just do a CopyDataFrom in the Constructor '-- of the form. myForm = New MyForm(myBO)
'-- Now show the dialog or show it in your MDI (whatever your need is) myForm.ShowDialog()End If