home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frm_Start
- BorderStyle = 1 'Fixed Single
- ClientHeight = 3915
- ClientLeft = 3135
- ClientTop = 2400
- ClientWidth = 5205
- ControlBox = 0 'False
- Height = 4380
- Left = 3075
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3915
- ScaleWidth = 5205
- Top = 1995
- Width = 5325
- Begin VB.CommandButton Command1
- Caption = "Click to Continue"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 495
- Left = 1800
- TabIndex = 4
- Top = 3360
- Width = 1935
- End
- Begin VB.TextBox Text1
- Height = 1455
- Left = 240
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 3
- Text = "FRM_STAR.frx":0000
- Top = 1680
- Width = 4815
- End
- Begin VB.Timer Timer1
- Interval = 1500
- Left = 4680
- Top = 120
- End
- Begin VB.Label Label3
- AutoSize = -1 'True
- BackColor = &H00FFFFFF&
- BackStyle = 0 'Transparent
- Caption = "mda@kuwait.net"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 12
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 300
- Index = 1
- Left = 1680
- TabIndex = 2
- Top = 1200
- Width = 2010
- End
- Begin VB.Label Label3
- AutoSize = -1 'True
- BackColor = &H00FFFFFF&
- BackStyle = 0 'Transparent
- Caption = "By: Mohammad Al-Abdullah"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 13.5
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 360
- Index = 0
- Left = 960
- TabIndex = 1
- Top = 840
- Width = 3525
- End
- Begin VB.Label Label2
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Master Mind"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 24
- underline = -1 'True
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 555
- Left = 1200
- TabIndex = 0
- Top = 120
- Width = 2805
- End
- Attribute VB_Name = "frm_Start"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- 'Jumps to the Frm_Mmind (Game Form)
- Unload frm_Start
- frm_MMind.Show
- End Sub
- Private Sub Form_Load()
- 'Positions the form in the middle of the screen
- Me.Top = (Screen.Height / 2) - (Me.Height / 2)
- Me.Left = (Screen.Width / 2) - (Me.Width / 2)
- End Sub
- Private Sub Timer1_Timer()
- 'Flashes the command1 control on and Off
- If Command1.Visible = True Then
- Command1.Visible = False
- Else
- Command1.Visible = True
- End If
- End Sub
-