VERSION 5.00
Begin VB.Form frmLoginSuccess 
   BackColor       =   &H00FFC0FF&
   Caption         =   "The Wedding Booth - Panel"
   ClientHeight    =   8250
   ClientLeft      =   2145
   ClientTop       =   2160
   ClientWidth     =   11490
   LinkTopic       =   "Form2"
   ScaleHeight     =   8250
   ScaleWidth      =   11490
   Begin VB.CommandButton addNote 
      Caption         =   "Add Note"
      Height          =   255
      Left            =   3120
      TabIndex        =   2
      Top             =   2520
      Width           =   975
   End
   Begin VB.TextBox txtNote 
      Height          =   285
      Left            =   120
      TabIndex        =   1
      Text            =   "Text1"
      Top             =   2520
      Width           =   2895
   End
   Begin VB.ListBox List1 
      Height          =   2205
      ItemData        =   "Panel.frx":0000
      Left            =   120
      List            =   "Panel.frx":0002
      TabIndex        =   0
      Top             =   240
      Width           =   3975
   End
   Begin VB.Menu Exit 
      Caption         =   "Exit"
      WindowList      =   -1  'True
   End
End
Attribute VB_Name = "frmLoginSuccess"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Exit_Click()
    Unload Me
End Sub

Private Sub addNote_Click()
    List1.AddItem txtNote
    txtNote = txtNote.Text
    txtNote.SetFocus
End Sub

Private Sub List1_Click()
    List1.RemoveItem (List1.ListIndex)
End Sub
