I have a progress indicator form.
I use the following code to turn it on and off. Turning it off with .visible=false and Set object=nothing works but is the form still open in memory?
dim oProgInd as Form_frmProgressIndicator
set oProgInd = new Form_frmProgressIndicator
With oProgInd
.Status="Running Append"
.visible=true
.maxRecord=iMxRec
End with
Do
' some repetitive code
oProgInd.Tick
Loop
oProgInd.visible=false
set oProgInd=nothing
I know Excel VBA uses Unload to close a form. Should I be using some kind of Unload in MS Access VBA.