hai friends,
how do i refresh my form1 after form2 close..i've tried this coding...
form1 : i put a listbox
form2 : to add the data
loadlist() : to refresh the listbox
Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim a As New form2()
a.Show()
form1.ActiveForm.Activate()
loadList()