home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / BCB.EXE / RCDATA / TRANGEDLG / TRANGEDLG.txt
Text File  |  1997-01-16  |  2KB  |  106 lines

  1. object RangeDlg: TRangeDlg
  2.   Left = 261
  3.   Top = 276
  4.   ActiveControl = EndVal
  5.   BorderStyle = bsDialog
  6.   Caption = 'Range'
  7.   ClientHeight = 104
  8.   ClientWidth = 341
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OnCreate = FormCreate
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object Start: TLabel
  17.     Left = 40
  18.     Top = 16
  19.     Width = 22
  20.     Height = 13
  21.     Caption = '&Start'
  22.     FocusControl = StartVal
  23.   end
  24.   object Finish: TLabel
  25.     Left = 184
  26.     Top = 16
  27.     Width = 28
  28.     Height = 13
  29.     Caption = '&Count'
  30.     FocusControl = EndVal
  31.   end
  32.   object OKButton: TButton
  33.     Left = 40
  34.     Top = 64
  35.     Width = 75
  36.     Height = 25
  37.     Caption = 'OK'
  38.     Default = True
  39.     ModalResult = 1
  40.     TabOrder = 1
  41.     OnClick = OKButtonClick
  42.   end
  43.   object CancelButton: TButton
  44.     Left = 136
  45.     Top = 64
  46.     Width = 75
  47.     Height = 25
  48.     Cancel = True
  49.     Caption = 'Cancel'
  50.     ModalResult = 2
  51.     TabOrder = 2
  52.     OnClick = CancelButtonClick
  53.   end
  54.   object HelpButton: TButton
  55.     Left = 232
  56.     Top = 64
  57.     Width = 75
  58.     Height = 25
  59.     Caption = '&Help'
  60.     TabOrder = 3
  61.     OnClick = HelpButtonClick
  62.   end
  63.   object UpDown1: TUpDown
  64.     Left = 129
  65.     Top = 16
  66.     Width = 15
  67.     Height = 21
  68.     Associate = StartVal
  69.     Min = -32768
  70.     Max = 32767
  71.     Position = 0
  72.     TabOrder = 5
  73.     Wrap = False
  74.   end
  75.   object UpDown2: TUpDown
  76.     Left = 273
  77.     Top = 16
  78.     Width = 15
  79.     Height = 21
  80.     Associate = EndVal
  81.     Min = 0
  82.     Max = 32767
  83.     Position = 0
  84.     TabOrder = 6
  85.     Wrap = False
  86.   end
  87.   object StartVal: TEdit
  88.     Left = 80
  89.     Top = 16
  90.     Width = 49
  91.     Height = 21
  92.     TabOrder = 4
  93.     Text = '0'
  94.     OnChange = StartValChange
  95.   end
  96.   object EndVal: TEdit
  97.     Left = 224
  98.     Top = 16
  99.     Width = 49
  100.     Height = 21
  101.     TabOrder = 0
  102.     Text = '0'
  103.     OnChange = EndValChange
  104.   end
  105. end
  106.