home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Instructions
- Caption = "Instructions"
- ClientHeight = 2640
- ClientLeft = 1695
- ClientTop = 2865
- ClientWidth = 5850
- ControlBox = 0 'False
- Height = 3045
- Left = 1635
- LinkMode = 1 'Source
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2640
- ScaleWidth = 5850
- Top = 2520
- Width = 5970
- Begin CommandButton Command2
- Caption = "Forget it! It's none of your business"
- Height = 375
- Left = 720
- TabIndex = 3
- Top = 2160
- Width = 4335
- End
- Begin CommandButton Command1
- Caption = "Yes, I will be completely honest"
- Height = 375
- Left = 720
- TabIndex = 2
- Top = 1680
- Width = 4335
- End
- Begin Label Label2
- Alignment = 2 'Center
- Caption = "To get the most enjoyment, be honest."
- Height = 375
- Left = 360
- TabIndex = 1
- Top = 1200
- Width = 4995
- End
- Begin Label Label1
- Alignment = 2 'Center
- Caption = "Answer ALL of the following questions."
- Height = 375
- Left = 360
- TabIndex = 0
- Top = 600
- Width = 4995
- End
- Sub command1_click ()
- Unload Instructions
- fbifile.Hide
- Background.Show
- End Sub
- Sub Command2_Click ()
- End
- End Sub
- Sub Form_Activate ()
- 'This plays the WAV:
- i% = sndplaysound("intro.wav", 1)
- 'The flags work as follows:
- '0 - wait until sound finishes before returning
- '1 - return immediately - sound can be stopped with
- ' i% =sndplaysound(0&, 0)
- '2 - play no default if it can't find the WAV
- '4 - play sound over and over, must be combined with 1 by calling the flag
- ' i% =sndplaysound(snd_async or snd_loop, 0)
- ' it can also be stopped with (0%,0)
- '5 - returns false immediately if sound is already playing.
- End Sub
- Sub Form_Load ()
- fbifile.Show
- End Sub
-