Mar 4, 2004 #1 Dapper Programmer Nov 2, 2003 74 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
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
Mar 4, 2004 #2 zemp Programmer Jan 27, 2002 3,301 CA 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 Upvote 0 Downvote
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
Mar 4, 2004 #3 disk42 Programmer Nov 14, 2003 16 US You could try calling focus back to form1 after popping up form2 Phil Upvote 0 Downvote