Combo,
To jump from one form to another is not the issue. You can simply create command button with following codes for both forms:
me.hide
form(1/2).show
There is no problem with this approach. But my concern is to reload and show form 1 whenever form 2 is terminated. The users may not click...
In MS Access, you use docmd.openform method. Modality of a form is predefined, but you can change it at run time. Opening a modal form will not halt the execution of codes. You can open multiple modal forms. Access forms are quite different in that you have much more control over their...
I'm in Powerpoint. For sample code, create two forms, let's call them form1 and form2. With form1, create a button or simply put the following code into the terminate event to call show form2:
form2.show
Of course, if you use a button, you have to hide form1 or unload it first.
With form2...
Problem: I have two forms running modal. You can jump from form 1 to 2 and 2 to 1. When users close 2, it jumps back to 1 automatically. Form 2 will stop to respond if you jump back and forth by closing form 2 couple of times.
I guess because of the modality of showing form 1, the termination...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.