You can create a main form that has buttons on it to call other forms.
For a button click, you can have something like this:
VB Code:
frmMain.hide frmNext.show
When you hide a form, and then show it, the load event is not fired. if you want it to fire again, just Unload frmMain. When you call it again, the Load event will be fired.




Reply With Quote