Showing Forms

hooby1

Registered User.
Local time
Today, 18:26
Joined
May 9, 2004
Messages
48
How would I go about doing this: I need to show two different forms one after another. For example; a menu screen (1st screen) with a command button that will pop up another screen (2nd screen) for the user to enter details about themselves. After clicking on the command button (On the 1st screen) that screen to would hide but be brought back if they click cancel. (It's a bit like having a cancel button but it goes back to the main screen instead of closing the form.) Cheers
 
I may not understand fully what you require but here goes

1st form on the command button (on click) open the second form and close first form
2nd form cancel button (on click) open first form close second form

Or you could make first form and second form modal (properties,modal)

Then when you click on the command button on form1 it opens form2.
Form1 will still be visible but will be behind form2 ,because form2 has been set to modal form 1 will not be available.
click cancel on form2 which closes form2 leaving form1 available
 
Cheers for the help, I have now solved it and it works.
 

Users who are viewing this thread

Back
Top Bottom