Is there a way to set a form to be active all the time? No matter if I open another forms, the form which I opened sets inactive and that other sets active.
For example:
I have two forms: “Main Form” and “Reminder Form”. When I start the application it loads the “Reminder Form”, then the “Main Form” loads and after that “Main Form” is active, but I want, that “Reminder Form” is active, but the sequence of how forms loads needs to be the same.
Is there a way to set a form to be active all the time?
Share
If by saying “active” you mean have a focus always, it’s not possible in built-in way, it should be handled by you. If you want that it’s always visible (it’s on top of other forms), you can use
TopMost=trueattribute, so it will be always over all non TopMost forms, which, by the way, is not guranteed in case of appearance of another TopMost form.Hope this helps.