sjn78 Posted March 7, 2004 Posted March 7, 2004 I know you can use the TopMost property to keep a form on top, but how do you set your form to stay topmost just in your app? I would like this topmost form to be a form similar to photoshops toolbar type windows that will sit on top but when the program is minimised, these forms hide as well. Quote
sjn78 Posted March 7, 2004 Author Posted March 7, 2004 Don't worry, got it. Never even thought about this. Dim f as new frmwhatever f.owner = me f.show() Quote
ukjock Posted March 7, 2004 Posted March 7, 2004 Don't worry, got it. Never even thought about this. Dim f as new frmwhatever f.owner = me f.show() You could do this: Dim S As New settings S.ShowDialog(Me) Regards Chris Quote ----------------- It�s always funny until someone gets hurt� Then it become hilarious!
sjn78 Posted March 7, 2004 Author Posted March 7, 2004 But doesn't the ShowDialog method only allow you to access the current form and not the ones below? I need to be able to access the ones under it and to keep the top form on display. Doesn't matter though as I have it working with the method I posted earlier. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.