;right-click a table, the "Sort Rows..." menu command
;botón secundario del ratón en Tabla, el mandato de menú «Ordenar filas… »

object SortRowsForm: TSortRowsForm
  Caption = 'Ordenar filas de la tabla'
  ClientHeight = 199
  ClientWidth = 373
  object Lbl1: TLabel
    Left = 15
    Top = 24
    Caption = '&Ordenar por'
  end
  object Col1Bx: TComboBox
    Left = 83
    Top = 20
    Width = 130
    Style = csDropDownList
    OnChange = ControlChange
  end
  object Order1Bx: TComboBox
    Left = 230
    Top = 20
    Width = 130
    Style = csDropDownList
  end
  object Lbl2: TLabel
    Left = 15
    Top = 64
    Caption = 'después &por'
  end
  object Col2Bx: TComboBox
    Left = 83
    Top = 60
    Width = 130
    Style = csDropDownList
    OnChange = ControlChange
  end
  object Order2Bx: TComboBox
    Left = 230
    Top = 60
    Width = 130
    Style = csDropDownList
  end
  object Lbl3: TLabel
    Left = 15
    Top = 104
    Caption = 'y &luego por'
  end
  object Col3Bx: TComboBox
    Left = 83
    Top = 100
    Width = 130
    Style = csDropDownList
    OnChange = ControlChange
  end
  object Order3Bx: TComboBox
    Left = 230
    Top = 100
    Width = 130
    Style = csDropDownList
  end
  object CaseBx: TCheckBox
    Left = 15
    Top = 144
    Caption = '&Distingue entre mayúsculas y minúsculas'
  end
end