
Form_load executing during shutdown
are you using something like:
dim f as new form1
f.show
... etc to show the form, then somewhere in code saying
set form1 = nothing
f <> form1; f is a copy of form1, so referencing form1 specifically will
cause it to load.
--
Randy Birch
MVP Visual Basic
http://www.mvps.org/vbnet/
Please respond only to the newsgroups so all can benefit.
# According to debug, my main form_load subroutine is re-executing during
# my shutdown procedure. How/why is this occurring? Under what conditions
# will it occur? The help file was singularly uninformative on this issue.