Does the basic listview automation work when called from a child form or do I need to handle this differently?
Thanks
Private Sub ListView1_ChildFormResults(ByVal sender As System.Object, ByVal e As MicroFour.StrataFrame.UI.Windows.Forms.ListViewChildFormResultsEventArgs) Handles ListView1.ChildFormResults
If e.Results = Windows.Forms.DialogResult.OK Then'-- Save the BOMe.Trans_failure_item_BO1.Save()ElseMe.Trans_failure_item_BO1.RestoreCurrentDataTableSnapshot(False)End If'-- Force the listview to requeryMe.ListView1.Requery(CInt(Me.Trans_route_Master_BO1.CurrentRow.Item("route_pk_id")))End Sub
the listview is filled by the parent primary key and this should force it to requery - it must be working after an add or edit as the display is fine - just the delete goes blank.