Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Close one form whilst opening another... 1

Status
Not open for further replies.

Neil Toulouse

Programmer
Mar 18, 2002
882
GB
Hi there!

I dare say this has been covered before but I am not sure what to search for!

Basically I have a form that I am essentially using as a menu. Therefore, the user clicks on an entry on this form which then runs a process or opens another form.

What I would like to happen is for this 'menu form' to be released at this point (ie at the point it calls another form).

Is this possible?

TIA
Neil

I like work. It fascinates me. I can sit and look at it for hours...
 
Code:
DO FORM .....
thisform.Release()
But this will works only if the child form is not modal
Other way:

Code:
this.Hide()
DO FORM .....

both are not tested, but should work :)


Borislav Borissov
VFP9 SP1, SQL Server 2000/2005.
 
Thanks matey! .Hide() then a DO then a RELEASE, will do what I need!

Neil

I like work. It fascinates me. I can sit and look at it for hours...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top