I meant when you open your form do something like this eg in in a button click:
vb Code:
Private Sub Button_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button.Click Dim x As New frmYours AddHandler x.FormClosed, AddressOf frmYours_FormClosed x.Show() End Sub
and have another sub within the calling form that looks something like this:
vb Code:
Private Sub frmYours_FormClosed(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosedEventArgs) RefreshList() End Sub




Code Project - "Best VB.NET article of October 2011"
on the left <--)
Reply With Quote