home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmVideo
- BackColor = &H00400000&
- BorderStyle = 1 'Fixed Single
- Caption = "MMDemo Video Player"
- ClientHeight = 645
- ClientLeft = 1560
- ClientTop = 5430
- ClientWidth = 5700
- ClipControls = 0 'False
- ControlBox = 0 'False
- Height = 1050
- Left = 1500
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 645
- ScaleWidth = 5700
- Top = 5085
- Width = 5820
- Begin CommandButton cmdVidExit
- Caption = "E&xit"
- Height = 375
- Left = 4560
- TabIndex = 1
- Top = 120
- Width = 975
- End
- Begin MMControl mmVideo
- Height = 375
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 4215
- End
- Option Explicit
- Sub cmdVidExit_Click ()
- Unload frmVideo
- End Sub
- Sub Form_Load ()
- ' set properties
- frmVideo.mmVideo.Notify = False
- frmVideo.mmVideo.Wait = True
- frmVideo.mmVideo.Shareable = False
- frmVideo.mmVideo.DeviceType = "AVIVideo"
- frmVideo.mmVideo.FileName = "\mmdemo\earth.avi"
- frmVideo.mmVideo.Command = "Open"
- End Sub
-