Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

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.

Posted
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

-----------------

It�s always funny until someone gets hurt� Then it become hilarious!

Posted

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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...