;displayed when opening plain text files

object TextConvForm: TTextConvForm
  Caption = 'Conversión de Archivo'
  ClientHeight = 370
  ClientWidth = 500
  object MainLbl: TLabel
    Left = 10
    Top = 10
  end
  object LstBx: TListBox
    Left = 10
    Top = 30
    Width = 230
    Height = 108
    OnClick = ControlChange
  end
  object CRLFLbl: TLabel
    Left = 320
    Top = 10
    Width = 68
    Height = 13
    Caption = 'F&inalizar líneas con:'
  end
  object CRLFCmbBx: TComboBox
    Left = 320
    Top = 30
    Width = 90
    Style = csDropDownList
    OnChange = ControlChange
  end
  object PreviewLbl: TLabel
    Left = 10
    Top = 156
    Caption = 'Pre&visualización:'
  end
  object PreviewMemo: TMemo
    Left = 10
    Top = 176
    Width = 480
    Height = 136
    ReadOnly = True
    ScrollBars = ssVertical
  end
end