Hi Pedro,You have to add code to the InfoPanel.RowChanged event to update the data in the info panel.
Here a sample:
Private Sub CustomersBrowseInfoPanel_RowChanged(ByVal e As MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialogRowChangedEventArgs) Handles MyBase.RowChanged '-- Strong-type the business object With CType(e.BusinessObject, bizCustomers) '-- Set the Customer detailed info. Me.lblCompanyName.Text = .CompanyName Me.lblStreet.Text = .Street Me.lblCityStateZip.Text = String.Format("{0}, {1} {2}", .City, .State, .ZipCode) Me.lblContactName.Text = .ContactName Me.lblBusinessPhone.Text = .Phone Me.lblFax.Text = .Fax Me.lblMobilPhone.Text = .Mobil Me.lnkeMailAddress.Text = .eMail End WithEnd Sub