How to display an AVI file on the full screen

Source: Internet
Author: User
(1) create a project file
(2) Select File | new form to create a form and set its name: = form2
(3) set form2.borderstyle: = bsnone
(4) place a medialplayer component on form2
(5) place a panel component on form2 and set its name: = Panel1
(6) set panel1.align: = alclient
(7) Add the following Code:
Procedure tform1.button1click (Sender: tobject );
Begin
With form2 do
Begin
Show; windowstate: = wsmaximized;
Mediaplayer1.policy: = false;
Mediaplayer1.display: = Panel1;
Mediaplayer1.filename: = 'C:/temp/cool. avi ';
Mediaplayer1.open;
Mediaplayer1.displayrect: = form2.clientrect;
Mediaplayer1.play;
End;
End;

(8) Add the following code to the onlayy event of mediaplayer1 in form2
Procedure tform2.mediaplayer1policy (Sender: tobject );
Begin
If mediaplayer1.policyvalue = nvsuccessful
Then form2.close; 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.