object Form1: TForm1
  Left = 200
  Top = 120
  Width = 380
  Height = 464
  Caption = 'Form1'
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 104
    Top = 32
    Width = 89
    Height = 25
    Caption = 'Show Tables'
    TabOrder = 0
    OnClick = Button1Click
  end
  object ListBox1: TListBox
    Left = 32
    Top = 80
    Width = 281
    Height = 337
    ItemHeight = 13
    TabOrder = 1
  end
  object MyDatabase: TDatabase
    AliasName = 'BancoPop'
    DatabaseName = 'MysqlDB'
    LoginPrompt = False
    Params.Strings = (
      'USER NAME=testodbc'
      'PASSWORD=mysql')
    SessionName = 'Default'
    Left = 48
    Top = 32
  end
end