VERSION 5.00 Begin VB.Form frmNewHiscore BorderStyle = 4 'Fixed ToolWindow Caption = "A NEW High Score!!!" ClientHeight = 810 ClientLeft = 45 ClientTop = 300 ClientWidth = 2295 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 810 ScaleWidth = 2295 ShowInTaskbar = 0 'False StartUpPosition = 1 'CenterOwner Begin VB.CommandButton Command1 Caption = "Okay!" Height = 495 Left = 1440 TabIndex = 2 ToolTipText = "Continue..." Top = 240 Width = 735 End Begin VB.TextBox NewHiScore Height = 285 Left = 120 MaxLength = 20 TabIndex = 0 Text = "Gaz" ToolTipText = "Type your name here..." Top = 360 Width = 1215 End Begin VB.Label Label1 Alignment = 2 'Center Caption = "And your name is?" Height = 255 Left = 120 TabIndex = 1 ToolTipText = "What's your name?" Top = 0 Width = 1935 End End Attribute VB_Name = "frmNewHiscore" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub Command1_Click() Unload Me End Sub Private Sub Form_UnLoad(cancel As Integer) HiName = NewHiScore.Text End Sub