I noticed that when I use frmVisible (true)(fasle), it does not trigger the form load event of the form made visible.
If I am in form2 how do I trigger the form1 load event.
since form 1 is called frmThisIsOne and the event is Form_Click.
Printable View
I noticed that when I use frmVisible (true)(fasle), it does not trigger the form load event of the form made visible.
If I am in form2 how do I trigger the form1 load event.
since form 1 is called frmThisIsOne and the event is Form_Click.
Of course it doesn't. The Form_Load event is only called when the form is loaded. Hiding the form, and then showing it again does not count.
Try the Form_Activate Event.
Though this fires every time the form loses and gains focus as well.
Thanks, now I know.