VERSION 5.00
Begin VB.Form statusform
Caption = "Status"
ClientHeight = 3600
ClientLeft = 4665
ClientTop = 4095
ClientWidth = 2685
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
ScaleHeight = 3600
ScaleWidth = 2685
Begin VB.ListBox statuslist
Height = 2595
Left = 35
TabIndex = 0
Top = 0
Width = 2655
End
End
Attribute VB_Name = "statusform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
With Me
.Height = 4000
.Width = 2800
.Left = 4560
.Top = 0
End With
End Sub
Private Sub Form_Resize()
statuslist.Height = Me.Height - 400
statuslist.Width = Me.Width - 200
End Sub