home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC/CD Review 46
/
PCR_0895.BIN
/
primal
/
code
/
micro.frm
< prev
next >
Wrap
Text File
|
1995-05-11
|
2KB
|
76 lines
VERSION 2.00
Begin Form MicroMachines
BorderStyle = 1 'Fixed Single
Caption = "Kev's Video Selection"
ClientHeight = 6915
ClientLeft = 2520
ClientTop = 2955
ClientWidth = 9570
Height = 7320
Left = 2460
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = MICRO.FRX:0000
ScaleHeight = 6915
ScaleWidth = 9570
Top = 2610
Width = 9690
Begin Image IntClk
Height = 1455
Left = 360
MousePointer = 10 'Up Arrow
Top = 4800
Width = 1575
End
Begin Image GoBack
Height = 1215
Left = 240
MousePointer = 10 'Up Arrow
Top = 240
Width = 1575
End
End
Option Explicit
Sub Form_Load ()
'If HiColour = False Then
' Me.Picture = LoadPicture(CDrive & "cd\page1256.bmp")
'Else
' Me.Picture = LoadPicture(CDrive & "cd\page1.bmp")
'End If
'If SmallRes = True Then
' Me.Move 0, 0
'Else
' centre Me
'End If
'cover.MMControl6.Command = "stop"
'cover.MMControl6.Command = "close"
End Sub
Sub Form_MouseMove (Button As Integer, Shift As Integer, X As Single, Y As Single)
'info.Visible = False
End Sub
Sub GoBack_Click ()
'cover.Show
Unload Me
End Sub
Sub IntClk_Click ()
introduction.Show
Hide
introduction.MMControl1.FileName = CDrive & "primal\primal2.avi"
screen.MousePointer = 11
introduction.MMControl1.Command = "open"
introduction.MMControl1.hWndDisplay = introduction.Picture1.hWnd
'introduction.MMControl1.Silent = True
introduction.Picture1.Visible = True
DoEvents
introduction.MMControl1.Command = "play"
screen.MousePointer = 0
'MsgBox "After AVI"
End Sub