I have a .NET WinForms application that has a single form that is set as TopMost so that it runs above all windows on the desktop.
This form has a single button on it to launch some other application, such as:
How can I then make the app TopMost above my application which is already set to TopMost? In other words, notepad needs to be set as TopMost to bring it above my app. I assume this is a Win32 call of some sort. Thanks!Code:Dim app as Process app = Process.Start("notepad")




Reply With Quote