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