Delphi Program full screen display without title bar covering the entire Screen

Source: Internet
Author: User

Delphi is simple to implement full screen display of programs without a title bar, covering the entire screen. This is useful in industrial computer or screen saver. The specific code is as follows. If you are interested, refer

The full screen display of the delphi Program has no title bar and covers the entire screen. This is useful for industrial computer or screen saver.

Copy codeThe Code is as follows:


Procedure TMainFrm. FormCreate (Sender: TObject );
Begin
With MainFrm do begin
{Position form}
Top: = 0;
Left: = 0;
{Go full screen}
BorderStyle: = bsNone;
WindowState: = wsmaximized;
ClientWidth: = Screen. Width;
ClientHeight: = Screen. Height;
Refresh;
SetForegroundWindow (Handle );
SetActiveWindow (Application. Handle );
End;
End;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.