vbAccelerator - Contents of code file: frmEvents.frm

VERSION 5.00
Begin VB.Form frmEvents 
   BackColor       =   &H80000010&
   Caption         =   "Control Events"
   ClientHeight    =   3090
   ClientLeft      =   3255
   ClientTop       =   2580
   ClientWidth     =   4680
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MDIChild        =   -1  'True
   ScaleHeight     =   3090
   ScaleWidth      =   4680
   WindowState     =   2  'Maximized
   Begin VB.ListBox lstEvents 
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   2700
      IntegralHeight  =   0   'False
      Left            =   60
      TabIndex        =   0
      Top             =   60
      Width           =   4575
   End
End
Attribute VB_Name = "frmEvents"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Resize()
   On Error Resume Next
   lstEvents.Move Screen.TwipsPerPixelX, _
      Screen.TwipsPerPixelY, _
      Me.ScaleWidth - Screen.TwipsPerPixelX * 2, _
      Me.ScaleHeight - Screen.TwipsPerPixelY * 2
End Sub