object OpenFileDlg: TOpenFileDlg
  Left = 196
  Top = 104
  ActiveControl = Combo
  BorderStyle = bsDialog
  Caption = 'Abrir con'
  ClientHeight = 293
  ClientWidth = 292
  Font.Color = clBlack
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  PixelsPerInch = 96
  Position = poScreenCenter
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  TextHeight = 13
  object Label1: TLabel
    Left = 8
    Top = 12
    Width = 199
    Height = 26
    Caption = "&Ingrese o seleccione el programa a utilizar.'#13#10'Si no est all, haga clic en el boton Explorar.'
    FocusControl = Combo
  end
  object BrowseBtn: TStyleSpeed
    Left = 263
    Top = 47
    Width = 22
    Height = 22
    OnClick = BrowseBtnClick
    Style = sbWin95
  end
  object Label2: TLabel
    Left = 8
    Top = 84
    Width = 132
    Height = 13
    Caption = '&Seleccione un programa registrado:'
    FocusControl = Listbox
  end
  object Combo: TComboBox
    Left = 8
    Top = 48
    Width = 249
    Height = 20
    ItemHeight = 13
    ParentShowHint = False
    ShowHint = True
    TabOrder = 0
  end
  object Listbox: TListBox
    Left = 8
    Top = 104
    Width = 276
    Height = 149
    ItemHeight = 13
    TabOrder = 1
    OnClick = ListboxClick
    OnDblClick = ListboxDblClick
  end
  object OKBtn: TPicBtn
    Left = 122
    Top = 262
    Width = 80
    Height = 25
    TabOrder = 2
    OnClick = OKBtnClick
    Kind = bkOK
    Margin = 4
    Style = bsNew
    Spacing = -1
    IsControl = True
  end
  object CancelBtn: TPicBtn
    Left = 206
    Top = 262
    Width = 80
    Height = 25
    TabOrder = 3
    Kind = bkCancel
    Margin = 4
    Style = bsNew
    Spacing = -1
    IsControl = True
  end
  object OpenDialog: TOpenDialog
    Filter = 'Todos los programa|*.exe *.com *.pif *.bat|Archivos ejecutables|*.exe|Archivos PIF|*.pif|Comandos de DOS|*.com|Archivos de procesos por lotes|*.bat|Todos los archivos|*.*'
    Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
    Title = 'Seleccione programa'
    Left = 4
    Top = 260
  end
end
