VERSION 5.00 Begin VB.Form FullScreen BackColor = &H00000000& BorderStyle = 0 'None Caption = "Form1" ClientHeight = 5745 ClientLeft = 0 ClientTop = 0 ClientWidth = 8580 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 5745 ScaleWidth = 8580 ShowInTaskbar = 0 'False StartUpPosition = 3 'Windows Default Begin VB.Label FSCount Alignment = 2 'Center BackColor = &H00000000& Caption = "00:00:00:00.00" BeginProperty Font Name = "Tahoma" Size = 48 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H000000FF& Height = 1215 Left = 840 TabIndex = 0 Top = 2040 Width = 6975 End End Attribute VB_Name = "FullScreen" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub FSCount_Click() GoAway End Sub Private Sub Form_Click() GoAway End Sub Private Sub Form_KeyPress(KeyAscii As Integer) GoAway End Sub Private Sub Form_Load() Me.Left = 0 Me.Top = 0 Me.Width = Screen.Width Me.Height = Screen.Height FSCount.Left = 0 FSCount.Top = Me.Height / 2 - FSCount.Height / 2 FSCount.Width = Me.Width End Sub Private Sub GoAway() CountDown.FullScreenIndex = -1 Me.Hide End Sub