Link to home
Start Free TrialLog in
Avatar of ed_dalian
ed_dalian

asked on

How to set a window?

I have a windows application, I want to set my form in front of any forms, and set it coundn't be moved or minimized. It just could be show as it initialize.
ASKER CERTIFIED SOLUTION
Avatar of osiris247
osiris247
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Mike Tomlinson
On your form:

   Set FormBorderStyle to None.
   Set TopMost to True.
   Set StartPosition to CenterScreen.