How do i keep on top a currently clicked form in win application. (Vb.net 2005)?
-
Hi All, I have developed an application in vb.net and it is working fine. pl suggest me how i keep on top a currently clicked form. Thanks
rmshah Developer
You're not very specific in your description or what you tried, so the standard answer to a question like this is setting the form's TopMost property to True.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
You're not very specific in your description or what you tried, so the standard answer to a question like this is setting the form's TopMost property to True.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008Dave, How are you? Sorry for coming back late and interrupting in others thread. If you have some time, Please go through it. The problem is quite descriptive now.[^]
-
Dave, How are you? Sorry for coming back late and interrupting in others thread. If you have some time, Please go through it. The problem is quite descriptive now.[^]
DO NOT HIJACK SOMEONE ELSE'S THREAD. There is an overload for the Show and ShowDialog methods that takes a Form object. This is should be the parent form that is going to own the child form. Just pass the parent form in as the parent and it should take care of the problem.
Dim newForm As New MyNewDialogForm newForm.ShowDialog(Me)
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008