vbAccelerator - Contents of code file: frmChild.frm

VERSION 5.00
Begin VB.Form frmChild 
   Caption         =   "Office Bar Status"
   ClientHeight    =   4200
   ClientLeft      =   3105
   ClientTop       =   2010
   ClientWidth     =   5670
   ControlBox      =   0   'False
   BeginProperty Font 
      Name            =   "Tahoma"
      Size            =   8.25
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form1"
   MDIChild        =   -1  'True
   ScaleHeight     =   4200
   ScaleWidth      =   5670
   WindowState     =   2  'Maximized
   Begin VB.TextBox txtData 
      BeginProperty Font 
         Name            =   "Lucida Console"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   3855
      Left            =   0
      MultiLine       =   -1  'True
      ScrollBars      =   2  'Vertical
      TabIndex        =   0
      Top             =   0
      Width           =   5415
   End
End
Attribute VB_Name = "frmChild"
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
   txtData.Move txtData.left, txtData.tOp, Me.ScaleWidth - txtData.left * 2,
    Me.ScaleHeight - txtData.tOp * 2
End Sub

Public Sub Indicate(ByVal sMsg As String)
   txtData.Text = txtData & vbCrLf & sMsg
End Sub

Public Sub IndicateClear()
   txtData.Text = ""
End Sub