Hi Michael,Yes you need to put code in the ListView's ChildFormResults event to requery the list. Here is sample of the code I use in one of them:
Private Sub lvPolicy_ChildFormResults(ByVal sender As System.Object, ByVal e As MicroFour.StrataFrame.UI.Windows.Forms.ListViewChildFormResultsEventArgs) Handles lvPolicy.ChildFormResults If e.Results = Windows.Forms.DialogResult.OK Then '-- Save the Policy BO Me.Child_PolicyBO1.Save() Else Me.Child_PolicyBO1.Undo(MicroFour.StrataFrame.Business.BusinessUndoType.AllRows) End If '-- Force the listview to requery e.Requery =
TrueEnd Sub