Every time I close the form, the program does not release the memory. If I open the form a few times, the program starts to eat away at the memory. Here is my code. What is missing. Thanks
*****Parent Form******
public Sub OpenChildForm()
dim OrderForm as new frmOrders
OrderForm.mdiParent = ME
OrderForm.Show
OrderForm = nothing
End Sub
*****Child Form******
public Sub CloseForm()
me.dispose(True)
End Sub
*****Parent Form******
public Sub OpenChildForm()
dim OrderForm as new frmOrders
OrderForm.mdiParent = ME
OrderForm.Show
OrderForm = nothing
End Sub
*****Child Form******
public Sub CloseForm()
me.dispose(True)
End Sub