VERSION 5.00
Begin VB.Form GDSMsg 
   Caption         =   "Status Message"
   ClientHeight    =   3690
   ClientLeft      =   4230
   ClientTop       =   1860
   ClientWidth     =   6150
   Icon            =   "gdsmsg.frx":0000
   LinkTopic       =   "Form1"
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   3690
   ScaleWidth      =   6150
   Begin VB.TextBox Text1 
      BackColor       =   &H00C0C0C0&
      Height          =   2775
      Left            =   240
      MultiLine       =   -1  'True
      ScrollBars      =   2  'Vertical
      TabIndex        =   4
      Top             =   240
      Width           =   5775
   End
   Begin VB.CommandButton CommandClose 
      Caption         =   "Close"
      Height          =   315
      Left            =   2400
      TabIndex        =   1
      TabStop         =   0   'False
      Top             =   3360
      Width           =   885
   End
   Begin VB.TextBox MsgText_BOX 
      Alignment       =   2  'Center
      Appearance      =   0  'Flat
      BackColor       =   &H00C0C0C0&
      BorderStyle     =   0  'None
      Height          =   285
      Left            =   5520
      MultiLine       =   -1  'True
      TabIndex        =   0
      TabStop         =   0   'False
      Text            =   "gdsmsg.frx":030A
      Top             =   3360
      Visible         =   0   'False
      Width           =   405
   End
   Begin VB.Label MsgText2 
      Alignment       =   2  'Center
      AutoSize        =   -1  'True
      Caption         =   "MsgText2"
      Height          =   195
      Left            =   3960
      TabIndex        =   3
      Top             =   3360
      Visible         =   0   'False
      Width           =   1395
      WordWrap        =   -1  'True
   End
   Begin VB.Label MsgText 
      Alignment       =   2  'Center
      AutoSize        =   -1  'True
      Caption         =   "MsgText"
      Height          =   195
      Left            =   0
      TabIndex        =   2
      Top             =   3360
      Visible         =   0   'False
      Width           =   2115
      WordWrap        =   -1  'True
   End
End
Attribute VB_Name = "GDSMsg"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub CommandClose_Click()
    UnloadMe
End Sub

Private Sub Form_Load()
    'Me.Icon = MainForm.Icon
End Sub
