object IconSelForm: TIconSelForm
  Left = 240
  Top = 185
  BorderStyle = bsDialog
  Caption = 'Seleccionar cono'
  ClientHeight = 177
  ClientWidth = 300
  Font.Color = clBlack
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  PixelsPerInch = 96
  Position = poScreenCenter
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnShow = FormShow
  TextHeight = 13
  object Label1: TLabel
    Left = 8
    Top = 8
    Width = 45
    Height = 13
    Caption = '&Nombre:'
    FocusControl = FileEdit
  end
  object Label2: TLabel
    Left = 8
    Top = 56
    Width = 74
    Height = 13
    Caption = 'Iconos &disponibles:'
    FocusControl = Grid
  end
  object Grid: TDrawGrid
    Left = 8
    Top = 74
    Width = 282
    Height = 58
    ColCount = 6
    DefaultColWidth = 40
    DefaultRowHeight = 40
    FixedCols = 0
    FixedRows = 0
    Options = [goDrawFocusSelected, goThumbTracking]
    RowCount = 1
    ScrollBars = ssHorizontal
    TabOrder = 1
    OnDblClick = GridDblClick
    OnDrawCell = GridDrawCell
    OnSelectCell = GridSelectCell
  end
  object CancelBtn: TPicBtn
    Left = 128
    Top = 144
    Width = 80
    Height = 25
    TabOrder = 3
    Kind = bkCancel
    Margin = 4
    Style = bsNew
    Spacing = -1
  end
  object OKBtn: TPicBtn
    Left = 44
    Top = 144
    Width = 80
    Height = 25
    TabOrder = 2
    OnClick = OKBtnClick
    Kind = bkOK
    Margin = 4
    Style = bsNew
    Spacing = -1
    IsControl = True
  end
  object BrowseBtn: TPicBtn
    Left = 212
    Top = 144
    Width = 80
    Height = 25
    Caption = 'Examinar...'
    TabOrder = 4
    OnClick = BrowseBtnClick
    Glyph.Data = {
      F6000000424DF600000000000000760000002800000010000000100000000100
      0400000000008000000000000000000000001000000010000000000000000000
      80000080000000808000800000008000800080800000C0C0C000808080000000
      FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00222222222222
      2222222222222222222222222222222222220000000000022222003333333330
      22220B033333333302220FB03333333330220BFB0333333333020FBFB0000000
      00000BFBFBFBFB0222220FBFBFBFBF0222220BFB000000022222200022222222
      2222222222222222222222222222222222222222222222222222}
    Margin = 4
    Style = bsNew
    Spacing = -1
  end
  object FileEdit: TComboBox
    Left = 8
    Top = 26
    Width = 281
    Height = 20
    DropDownCount = 10
    ItemHeight = 13
    MaxLength = 79
    TabOrder = 0
    OnExit = FileEditExit
  end
  object OpenDialog: TOpenDialog
    Filter = 'Archivos de iconos|*.ico; *.exe; *.dll|Programas|*.exe|Libreras|*.dll|Iconos|*.ico|Todos los archivos|*.*'
    Options = [ofReadOnly, ofPathMustExist, ofFileMustExist]
    Left = 4
    Top = 144
  end
end
