G
Guest
I have a .Net 2 WinForms apps that can spawn off co-existing multiple windows
(appears in task bar).
I want to bring the new windows to front without making them top most (so
Alt+Tab will work). How can I do this?
I experimented with
this.SendToBack()
newForm.Show()
newForm.BringToFront()
newForm.Activate()
newForm.Focus()
newForm.aControlInNewForm.Focus()
(appears in task bar).
I want to bring the new windows to front without making them top most (so
Alt+Tab will work). How can I do this?
I experimented with
this.SendToBack()
newForm.Show()
newForm.BringToFront()
newForm.Activate()
newForm.Focus()
newForm.aControlInNewForm.Focus()