;the "Edit | Go To..." menu command

object GoToForm: TGoToForm
  Caption = 'Ir a'
  ClientHeight = 102
  ClientWidth = 417
  FormStyle = fsStayOnTop
  OnActivate = FormActivate
  OnDeactivate = FormDeactivate
  object GoToLbl: TLabel
    Left = 7
    Top = 7
    Caption = 'Ir a:'
  end
  object GoToLstBx: TListBox
    Left = 7
    Top = 23
    Width = 120
    Height = 69
    OnClick = SetupForm
  end
  object NumLbl: TLabel
    Left = 145
    Top = 7
  end
  object NumUpDnEdt: TUpDownEdit
    Left = 145
    Top = 23
    Width = 247
    SepDigits = 0
    OnValChange = SetupForm
    Increment = 1
    Min = 1
  end
  object NameCmbBx: TComboBox
    Left = 145
    Top = 23
    Width = 264
    Height = 21
    Style = csDropDownList
  end
  object SortByLbl: TLabel
    Left = 145
    Top = 49
    Caption = 'Ordenar marcadores por:'
  end
  object SortByNameRadBtn: TRadioButton
    Left = 275
    Top = 48
    Caption = 'Nombre'
    OnClick = SortByRadBtnClick
  end
  object SortByLocatRadBtn: TRadioButton
    Left = 335
    Top = 48
    Caption = 'Ubicación'
    OnClick = SortByRadBtnClick
  end
  object PrevBtn: TButton
    Left = 175
    Top = 71
    Width = 75
    Caption = 'Anterior'
    OnClick = PrevBtnClick
  end
  object GoToBtn: TButton
    Left = 255
    Top = 71
    Width = 75
    Default = True
    OnClick = GoToBtnClick
  end
  object CloseBtn: TButton
    Left = 334
    Top = 71
    Width = 75
    Cancel = True
    Caption = 'Cerrar'
    OnClick = CloseBtnClick
  end
end