home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmViewer
- Caption = "ActiveMovie OCX Viewer"
- ClientHeight = 1284
- ClientLeft = 1008
- ClientTop = 5676
- ClientWidth = 5820
- ControlBox = 0 'False
- Height = 1824
- Icon = "viewer.frx":0000
- Left = 960
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 1284
- ScaleWidth = 5820
- Top = 5184
- Width = 5916
- Begin AMovieObjectsCtl.ActiveMovie ActiveMovie1
- Height = 840
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 3168
- _ExtentX = 5588
- _ExtentY = 1482
- FileName = ""
- End
- Attribute VB_Name = "frmViewer"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub ActiveMovie1_PositionChange(ByVal oldPosition As Double, ByVal newPosition As Double)
- ' Tracks PositionChange events.
- g_cPositionChange = g_cPositionChange + 1
- UpdateStatusBar
- End Sub
- Private Sub ActiveMovie1_StateChange(ByVal oldState As Long, ByVal newState As Long)
- ' Tracks StateChange events.
- g_cStateChange = g_cStateChange + 1
- UpdateStatusBar
- End Sub
- Private Sub ActiveMovie1_Timer()
- ' Tracks Timer events.
- g_cTimer = g_cTimer + 1
- UpdateStatusBar
- End Sub
- Private Sub Form_Load()
- ' ActiveMovie OCX Sample Code
- ' Copyright (c) 1996 Microsoft Corporation
- ' All Rights Reserved
- ' See the ActiveMovie1 object for events.
- End Sub
- Private Sub sdmen_Click()
- MsgBox Str$(ActiveMovie1.Width) + Str$(ActiveMovie1.Height)
- End Sub
-