home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Introduction
- BorderStyle = 1 'Fixed Single
- Caption = "Introduction"
- ClientHeight = 7170
- ClientLeft = 2205
- ClientTop = 2520
- ClientWidth = 9585
- Height = 7575
- Left = 2145
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = INTRO.FRX:0000
- ScaleHeight = 7170
- ScaleWidth = 9585
- Top = 2175
- Width = 9705
- Begin MMControl MMControl1
- Height = 495
- Left = 360
- TabIndex = 3
- Top = 3480
- Visible = 0 'False
- Width = 4350
- End
- Begin Timer Timer2
- Enabled = 0 'False
- Interval = 3000
- Left = 8115
- Top = 2190
- End
- Begin PictureBox Picture1
- Height = 2700
- Left = 3360
- ScaleHeight = 2670
- ScaleWidth = 3585
- TabIndex = 0
- Top = 2400
- Visible = 0 'False
- Width = 3615
- End
- Begin Label Label2
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Height = 285
- Left = 2760
- TabIndex = 2
- Top = 5715
- Width = 3660
- End
- Begin Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Height = 270
- Left = 2775
- TabIndex = 1
- Top = 5325
- Width = 3645
- End
- Begin Image GoBack
- Height = 1215
- Left = 240
- MousePointer = 10 'Up Arrow
- Top = 240
- Width = 1575
- End
- Option Explicit
- Sub Form_Load ()
- ' 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
- 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 ()
- micromachines.Show
- Unload Me
- End Sub
- Sub MMControl1_Done (NotifyCode As Integer)
- MsgBox "I've Finished"
- End Sub
- Sub MMControl1_StatusUpdate ()
- Select Case mmcontrol1.Position
- Case 1020 To 2000
- mmcontrol1.Command = "stop"
- timer2.Enabled = True
- Case 40 To 90
- label1 = "Micro Machines 2"
- label2 = "TV Ad"
- Case 360 To 410
- label1 = "Jon Smith"
- label2 = "Editor"
- Case Else
- label1 = ""
- label2 = ""
- End Select
- End Sub
- Sub Timer2_Timer ()
- micromachines.Show
- mmcontrol1.Command = "close"
- Unload Me
- End Sub
-