I have a application that has multiple forms. I want it so if a user clicks a form only that form will come on top (focus). instead any forms that are shown by the app will appear and the selected form will have focus. The problem with this is that if the user is copying data from a form to another app they have to minimize all the other forms so they won't display when they pick the one they want.

Example
If you create 5 forms from1,2,3,4,5 and use Me.Show on all of them. Then the user opens NotePad then click on form3 When this happens form1,2,3,4 and 5 will show! (but 3 will have focus) The other forms will cover notpad. Can I make it so only form3 will appear over notepad?


Jean-Guy