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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Form.show

Status
Not open for further replies.

Dapper

Programmer
Nov 2, 2003
74
0
0
GB

is there a way to show a form, but not take you away from another form.

example.... user is working away on form1, then pops up form2 but only in the background and the user can choose wether or not to goto form2.

thanks

Dave
 
Just set the foucus back to the form that you want. Something like this,

Code:
   Form2.Show
   Form1.SetFocus

Code is in a form1 event.

zemp
 
You could try calling focus back to form1 after popping up form2

Phil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top