;the "Insert | Hyperlink..." menu command

object HyperlinkForm: THyperlinkForm
  ClientHeight = 232
  ClientWidth = 426
  ActiveControl = URLEdt
  object TextLbl: TLabel
    Left = 8
    Top = 11
    Caption = '&Texto visible:'
  end
  object TextEdt: TEdit
    Left = 97
    Top = 7
    Width = 320
  end
  object TipLbl: TLabel
    Left = 8
    Top = 37
    Caption = '&Consejo:'
  end
  object TipEdt: TEdit
    Left = 97
    Top = 33
    Width = 320
  end
  object URLLbl: TLabel
    Left = 8
    Top = 63
    Caption = 'Nombre del &archivo, marcador, o dirección de Internet para crear un hipervínculo:'
  end
  object URLEdt: TEdit
    Left = 8
    Top = 81
    Width = 409
  end
  object BtnLbl: TLabel
    Left = 8
    Top = 110
    Width = 175
    Height = 50
    AutoSize = False
    Caption = 'O utilice los botones de la derecha para elegir un archivo o marcador de documento para crear un hipervínculo.'
  end
  object ChooseFileBtn: TButton
    Left = 198
    Top = 111
    Width = 220
    Height = 20
    Caption = '&Archivo...'
    OnClick = ChooseFileBtnClick
  end
  object BookmarkBtn: TButton
    Left = 198
    Top = 135
    Width = 220
    Height = 20
    Caption = '&Marcador del documento activo...'
    OnClick = BookmarkBtnClick
  end
  object Bookmark2Btn: TButton
    Left = 198
    Top = 159
    Width = 220
    Height = 20
    Caption = 'Mar&cador de otro documento...'
    OnClick = Bookmark2BtnClick
  end
  object RelPathChkBx: TCheckBox
    Left = 8
    Top = 165
    Caption = 'Sugerir rutas de archivo relativas'
    OnClick = RelPathChkBxClick
  end
  object Bevel: TBevel
    Left = 8
    Top = 189
    Width = 410
    Height = 2
  end
  object RmvBtn: TButton
    Left = 8
    Top = 202
    Width = 90
    Caption = '&Desactivar'
    OnClick = RmvBtnClick
  end
  object OpenDlg: TOpenDialog
    Filter = 'Todos los archivos (*.*)|*.*'
    Options = [ofPathMustExist, ofFileMustExist]
    Title = 'Enlazar a Archivo'
  end
end