Aug 5, 2003 #1 johndelphi IS-IT--Management Joined Jul 1, 2003 Messages 10 Location ZA if you have 2 forms, and you want one form to always stay on top, how would you do that?
Aug 5, 2003 #2 luistsousa Technical User Joined May 12, 2003 Messages 66 Location PT Hi You can run the second form with Show function, and write the Left and Top properties with the values that You want. Regards Upvote 0 Downvote
Hi You can run the second form with Show function, and write the Left and Top properties with the values that You want. Regards
Aug 5, 2003 #3 michaenh Programmer Joined Aug 7, 2002 Messages 205 Location NO Hi. You can use ShowModal.. or Set formstyle to fsStayOnTop.. or With Self Do SetWindowPos (Handle, HWND_TOPMOST, Left, Top, Width, Height, SWP_NOACTIVATE Or SWP_NOMOVE Or SWP_NOSIZE); set this code in your form create event. cheers, mha Upvote 0 Downvote
Hi. You can use ShowModal.. or Set formstyle to fsStayOnTop.. or With Self Do SetWindowPos (Handle, HWND_TOPMOST, Left, Top, Width, Height, SWP_NOACTIVATE Or SWP_NOMOVE Or SWP_NOSIZE); set this code in your form create event. cheers, mha