Unit1.cpp
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #include <MMSystem.hpp>
  4. #pragma hdrstop
  5. #include "Unit1.h"
  6. //---------------------------------------------------------------------------
  7. #pragma package(smart_init)
  8. #pragma resource "*.dfm"
  9. TForm1 *Form1;
  10. //---------------------------------------------------------------------------
  11. __fastcall TForm1::TForm1(TComponent* Owner)
  12.         : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TForm1::mciNotify(TMessage& Msg)
  17. {
  18.   mciSendString("close video", NULL,0, 0);
  19. }
  20. //---------------------------------------------------------------------------
  21. void __fastcall TForm1::Button1Click(TObject *Sender)
  22. {
  23.   mciSendString("open test.avi alias video", NULL,0, 0);
  24.   mciSendString("window video handle 0", NULL,0, 0);
  25.   mciSendString("window video state show maximized", NULL,0, 0);
  26.   mciSendString("play video notify", NULL, 0, Handle);
  27. }
  28. //---------------------------------------------------------------------------
  29. void __fastcall TForm1::Button2Click(TObject *Sender)
  30. {
  31.   mciSendString("open test.avi type avivideo alias video", NULL,0, 0);
  32.   mciSendString("set video time format ms", NULL,0, 0);
  33.   mciSendString("play video from 0 notify", NULL, 0, Handle);
  34. }
  35. //---------------------------------------------------------------------------