VERSION 5.00 Begin VB.Form frmCopyright BackColor = &H00C0C0C0& BorderStyle = 0 'None Caption = "Interlocking Software Company" ClientHeight = 5115 ClientLeft = 1320 ClientTop = 1260 ClientWidth = 6945 LinkTopic = "Form1" LockControls = -1 'True ScaleHeight = 5115 ScaleWidth = 6945 ShowInTaskbar = 0 'False Begin VB.Frame Frame1 Caption = "Click our logo" BeginProperty Font Name = "MS Sans Serif" Size = 12 Charset = 0 Weight = 700 Underline = 0 'False Italic = -1 'True Strikethrough = 0 'False EndProperty Height = 4815 Left = 120 TabIndex = 0 Top = 120 Width = 6615 Begin VB.CommandButton cmdExit Caption = "Exit" BeginProperty Font Name = "MS Sans Serif" Size = 9.75 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 5160 TabIndex = 1 Top = 360 Width = 1215 End Begin VB.Label lblAuthor AutoSize = -1 'True Caption = "Written By" BeginProperty Font Name = "MS Sans Serif" Size = 12 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 300 Left = 4200 TabIndex = 3 Top = 1125 Visible = 0 'False Width = 1095 End Begin VB.Label lblYear AutoSize = -1 'True Caption = "Copyright Year 2000" BeginProperty Font Name = "MS Sans Serif" Size = 12 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 300 Left = 4200 TabIndex = 2 Top = 1560 Visible = 0 'False Width = 2175 End Begin VB.Image imgLogo Height = 3570 Left = 240 Picture = "copy.frx":0000 Stretch = -1 'True Top = 480 Width = 3675 End End End Attribute VB_Name = "frmCopyright" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdExit_Click() End End Sub Private Sub Form_Load() End Sub Private Sub imgLogo_Click() lblAuthor.Visible = True lblYear.Visible = True End Sub