;the "Insert | Date & Time..." menu command

object DateTimeForm: TDateTimeForm
  Caption = 'Fecha y hora'
  ClientHeight = 317
  ClientWidth = 457
  object FmtLbl: TLabel
    Left = 10
    Top = 10
    Caption = 'Formatos disponibles:'
  end
  object FmtLstBx: TListBox
    Left = 10
    Top = 30
    Width = 270
    Height = 277
    Style = lbOwnerDrawFixed
    OnDrawItem = FmtLstBxDrawItem
    OnClick = ControlChange
    OnMouseMove = FmtLstBxMouseMove
  end
  object DefDateFmtBtn: TButton
    Left = 288
    Top = 30
    Width = 160
    Caption = '&Fecha predeterminada'
    OnClick = ControlChange
  end
  object DefTimeFmtBtn: TButton
    Left = 288
    Top = 57
    Width = 160
    Caption = '&Hora predeterminada'
    OnClick = ControlChange
  end
  object EditBtn: TButton
    Left = 288
    Top = 84
    Width = 78
    Caption = '&Editar...'
    OnClick = ControlChange
  end
  object RestoreBtn: TButton
    Left = 370
    Top = 84
    Width = 78
    Caption = '&Restaurar...'
    OnClick = ControlChange
  end
  object LangLbl: TLabel
    Left = 288
    Top = 118
    Caption = 'Idioma:'
  end
  object LangCmbBx: TComboBox
    Left = 288
    Top = 135
    Width = 160
    Style = csDropDownList
    OnChange = ControlChange
  end
  object CaseLbl: TLabel
    Left = 288
    Top = 167
    Caption = 'Formato:'
  end
  object CaseLstBx: TListBox
    Left = 288
    Top = 184
    Width = 160
    Height = 80
    Items.Strings = (
      'Caso original'
      'Mayúsculas'
      'Minúsculas'
      'Primera mayúscula'
      'Título')
    OnClick = ControlChange
  end
  object AutoUpdateChkBx: TCheckBox
    Left = 295
    Top = 260
    Caption = 'Act&ualizar automáticamente'
  end
end