object Form1: TForm1
  Left = 295
  Top = 116
  Width = 354
  Height = 284
  Caption = 'Form1'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
  object Label1: TLabel
    Left = 16
    Top = 224
    Width = 39
    Height = 13
    Caption = 'Страна:'
  end
  object DBGrid1: TDBGrid
    Left = 8
    Top = 8
    Width = 329
    Height = 161
    DataSource = DataSource1
    TabOrder = 0
    TitleFont.Charset = DEFAULT_CHARSET
    TitleFont.Color = clWindowText
    TitleFont.Height = -11
    TitleFont.Name = 'MS Sans Serif'
    TitleFont.Style = []
  end
  object DBNavigator1: TDBNavigator
    Left = 8
    Top = 184
    Width = 240
    Height = 25
    DataSource = DataSource1
    TabOrder = 1
  end
  object Button1: TButton
    Left = 256
    Top = 184
    Width = 75
    Height = 25
    Caption = 'Применить'
    TabOrder = 2
    OnClick = Button1Click
  end
  object Edit1: TEdit
    Left = 72
    Top = 224
    Width = 265
    Height = 21
    TabOrder = 3
  end
  object DataSource1: TDataSource
    DataSet = Query1
    Left = 32
    Top = 24
  end
  object Query1: TQuery
    DatabaseName = 'DBDEMOS'
    SQL.Strings = (
      'SELECT Name, Capital, Continent, Area, Population'
      'FROM "country.db" Country'
      'WHERE   (Name = :Name_param) ')
    Left = 64
    Top = 24
    ParamData = <
      item
        DataType = ftString
        Name = 'Name_param'
        ParamType = ptInput
      end>
    object Query1Name: TStringField
      FieldName = 'Name'
      Origin = 'DBDEMOS."country.DB".Name'
      Size = 24
    end
    object Query1Capital: TStringField
      FieldName = 'Capital'
      Origin = 'DBDEMOS."country.DB".Capital'
      Size = 24
    end
    object Query1Continent: TStringField
      CustomConstraint = 'X = '#39'South America'#39' OR X = '#39'North America'#39
      ConstraintErrorMessage = 'Country is not in the American Continent'
      DefaultExpression = #39'South America'#39
      FieldName = 'Continent'
      Origin = 'DBDEMOS."country.DB".Continent'
      Size = 24
    end
    object Query1Area: TFloatField
      FieldName = 'Area'
      Origin = 'DBDEMOS."country.DB".Area'
    end
    object Query1Population: TFloatField
      FieldName = 'Population'
      Origin = 'DBDEMOS."country.DB".Population'
    end
  end
end
