child form minimizing Toplevel Form
-
Hi All, I am loading usercontrols inside form(Pannel).Upon click on button on usercontrol it opens popup(form) which minimizing the toplevel form. The pop up should open above Toplevel form. Any idea please help. I tried by setting TopMost property to true but no luck. Many Thanks, Sri
-
Hi All, I am loading usercontrols inside form(Pannel).Upon click on button on usercontrol it opens popup(form) which minimizing the toplevel form. The pop up should open above Toplevel form. Any idea please help. I tried by setting TopMost property to true but no luck. Many Thanks, Sri
Try to set this property after displayed by Show() method. That usually fixes it.
-
Try to set this property after displayed by Show() method. That usually fixes it.
-
Same TopMost like below. Dim f As New Form2 f.TopMost = True f.Show() Me.TopMost = True
-
Same TopMost like below. Dim f As New Form2 f.TopMost = True f.Show() Me.TopMost = True