vbAccelerator - Contents of code file: fMessages.frm

VERSION 5.00
Begin VB.Form frmMessages 
   Caption         =   "Rebar/Toolbar messages"
   ClientHeight    =   3360
   ClientLeft      =   3285
   ClientTop       =   2025
   ClientWidth     =   5520
   Icon            =   "fMessages.frx":0000
   LinkTopic       =   "Form2"
   MDIChild        =   -1  'True
   ScaleHeight     =   3360
   ScaleWidth      =   5520
   Begin VB.ListBox lstNotes 
      BeginProperty Font 
         Name            =   "Tahoma"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   3180
      IntegralHeight  =   0   'False
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   5355
   End
End
Attribute VB_Name = "frmMessages"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Public Sub Indicate(sItem As String)
    lstNotes.AddItem sItem
    lstNotes.ListIndex = lstNotes.NewIndex
End Sub

Private Sub Form_Resize()
   lstNotes.Move lstNotes.Left, lstNotes.Top, Me.ScaleWidth - lstNotes.Left *
    2, Me.ScaleHeight - lstNotes.Top * 2
End Sub