home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 August / chip_08_2000.iso / software / astro / starcalc / STARCALC.EXE / 0 / RCDATA / TDEEPFINDFORM / TDEEPFINDFORM.txt
Text File  |  2000-05-28  |  2KB  |  100 lines

  1. object DeepFindForm: TDeepFindForm
  2.   Left = 196
  3.   Top = 140
  4.   BorderStyle = bsDialog
  5.   Caption = 'Search of deep-sky object'
  6.   ClientHeight = 195
  7.   ClientWidth = 371
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poScreenCenter
  13.   OnCreate = FormCreate
  14.   OnDestroy = FormDestroy
  15.   OnKeyDown = FormKeyDown
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object ExitBtn: TButton
  20.     Left = 96
  21.     Top = 168
  22.     Width = 75
  23.     Height = 21
  24.     Caption = '&Cancel'
  25.     ModalResult = 2
  26.     TabOrder = 2
  27.     OnKeyDown = FormKeyDown
  28.   end
  29.   object OkBtn: TButton
  30.     Left = 8
  31.     Top = 168
  32.     Width = 75
  33.     Height = 21
  34.     Caption = '&Find'
  35.     Default = True
  36.     ModalResult = 1
  37.     TabOrder = 1
  38.     OnKeyDown = FormKeyDown
  39.   end
  40.   object ScrollBox1: TScrollBox
  41.     Left = 0
  42.     Top = 8
  43.     Width = 369
  44.     Height = 153
  45.     TabOrder = 0
  46.     object DeepHeader: THeaderControl
  47.       Left = 0
  48.       Top = 0
  49.       Width = 365
  50.       Height = 17
  51.       Font.Color = clNavy
  52.       Font.Height = -11
  53.       Font.Name = 'MS Sans Serif'
  54.       Font.Style = []
  55.       Sections = <
  56.         item
  57.           Alignment = taRightJustify
  58.           Style = hsOwnerDraw
  59.           Text = 'M'
  60.           Width = 39
  61.         end
  62.         item
  63.           Alignment = taRightJustify
  64.           Style = hsOwnerDraw
  65.           Text = 'NGC'
  66.           Width = 49
  67.         end
  68.         item
  69.           Alignment = taRightJustify
  70.           Style = hsOwnerDraw
  71.           Text = 'Type'
  72.           Width = 49
  73.         end
  74.         item
  75.           Style = hsOwnerDraw
  76.           Text = 'Proper name'
  77.           Width = 94
  78.         end>
  79.       ParentFont = False
  80.       OnDrawSection = DeepHeaderDrawSection
  81.       OnSectionClick = DeepHeaderSectionClick
  82.       OnSectionResize = DeepHeaderSectionResize
  83.     end
  84.     object DeepListBox: TListBox
  85.       Left = 0
  86.       Top = 24
  87.       Width = 365
  88.       Height = 125
  89.       Align = alBottom
  90.       BorderStyle = bsNone
  91.       Color = clBtnFace
  92.       ItemHeight = 13
  93.       Style = lbOwnerDrawFixed
  94.       TabOrder = 1
  95.       OnDrawItem = DeepListBoxDrawItem
  96.       OnKeyDown = FormKeyDown
  97.     end
  98.   end
  99. end
  100.