home *** CD-ROM | disk | FTP | other *** search
Wrap
VERSION 5.00 Begin VB.Form frmTTTMain BackColor = &H00000000& BorderStyle = 1 'Fixed Single Caption = "Tic Tac Toe" ClientHeight = 2400 ClientLeft = 45 ClientTop = 345 ClientWidth = 4680 ClipControls = 0 'False ControlBox = 0 'False BeginProperty Font Name = "Comic Sans MS" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H000000FF& LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 2400 ScaleWidth = 4680 StartUpPosition = 3 'Windows Default Begin VB.CommandButton Command2 Caption = "Exit" Height = 375 Left = 3240 TabIndex = 3 Top = 1680 Width = 1095 End Begin VB.CommandButton cmd2Player Caption = "Two Player" Height = 375 Left = 1800 TabIndex = 2 Top = 1680 Width = 1095 End Begin VB.CommandButton cmdOnePlayer Caption = "One Player" Height = 375 Left = 360 TabIndex = 1 Top = 1680 Width = 1095 End Begin VB.Label Label1 BackStyle = 0 'Transparent Caption = "Tic Tac Toe" BeginProperty Font Name = "Comic Sans MS" Size = 36 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H000000FF& Height = 975 Left = 240 TabIndex = 0 Top = 240 Width = 4095 End Attribute VB_Name = "frmTTTMain" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdOnePlayer_Click() Me.Hide frm1Player.Show End Sub Private Sub cmd2player_Click() Me.Hide frm2Player.Show End Sub Private Sub Command2_Click() frmTTTMain.Hide who = MsgBox("This game was programmed by Ben Doherty" & Chr$(10) & Chr$(10) & " jake-d@mindspring.com" & Chr$(10) & "http://www.mindspring.com/~jake-d/index.html", vbInformation, "Tic Tac Toe") End Sub