object FormMain: TFormMain
  Left = 192
  Top = 107
  Width = 432
  Height = 519
  Caption = 'Simple testbed for PolyFit'
  Color = clBtnFace
  Font.Color = clWindowText
  Font.Height = -14
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OnShow = FormShow
  TextHeight = 16
  object LabelNumTerms: TLabel
    Left = 30
    Top = 423
    Width = 98
    Height = 16
    Caption = 'Number of terms'
  end
  object MemoResults: TMemo
    Left = 20
    Top = 20
    Width = 336
    Height = 385
    Font.Color = clWindowText
    Font.Height = -15
    Font.Name = 'Courier New'
    Font.Style = []
    Lines.Strings = (
      'Memo1')
    ReadOnly = True
    TabOrder = 0
  end
  object ButtonClose: TButton
    Left = 266
    Top = 433
    Width = 90
    Height = 31
    Caption = 'Close'
    TabOrder = 1
    OnClick = ButtonCloseClick
  end
  object UpDownNumTerms: TUpDown
    Left = 100
    Top = 443
    Width = 18
    Height = 30
    Associate = EditNumTerms
    Min = 1
    Max = 5
    Position = 3
    TabOrder = 2
    Wrap = False
    OnClick = UpDownNumTermsClick
  end
  object EditNumTerms: TEdit
    Left = 39
    Top = 443
    Width = 61
    Height = 24
    ReadOnly = True
    TabOrder = 3
    Text = '3'
  end
end
