VERSION 5.00 Begin VB.Form frmGamePaused BorderStyle = 4 'Fixed ToolWindow Caption = "Game paused..." ClientHeight = 615 ClientLeft = 45 ClientTop = 300 ClientWidth = 2655 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 615 ScaleWidth = 2655 ShowInTaskbar = 0 'False StartUpPosition = 1 'CenterOwner Begin VB.CommandButton Close Caption = "Continue..." BeginProperty Font Name = "System" Size = 19.5 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 615 Left = 0 TabIndex = 0 ToolTipText = "Well, what do you think this button does?" Top = 0 Width = 2655 End End Attribute VB_Name = "frmGamePaused" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub Close_Click() Unload Me End Sub