object RangeDlg: TRangeDlg Left = 261 Top = 276 ActiveControl = EndVal BorderStyle = bsDialog Caption = 'Range' ClientHeight = 104 ClientWidth = 341 Font.Color = clWindowText Font.Height = -11 Font.Name = 'MS Sans Serif' Font.Style = [] OnCreate = FormCreate PixelsPerInch = 96 TextHeight = 13 object Start: TLabel Left = 40 Top = 16 Width = 22 Height = 13 Caption = '&Start' FocusControl = StartVal end object Finish: TLabel Left = 184 Top = 16 Width = 28 Height = 13 Caption = '&Count' FocusControl = EndVal end object OKButton: TButton Left = 40 Top = 64 Width = 75 Height = 25 Caption = 'OK' Default = True ModalResult = 1 TabOrder = 1 OnClick = OKButtonClick end object CancelButton: TButton Left = 136 Top = 64 Width = 75 Height = 25 Cancel = True Caption = 'Cancel' ModalResult = 2 TabOrder = 2 OnClick = CancelButtonClick end object HelpButton: TButton Left = 232 Top = 64 Width = 75 Height = 25 Caption = '&Help' TabOrder = 3 OnClick = HelpButtonClick end object UpDown1: TUpDown Left = 129 Top = 16 Width = 15 Height = 21 Associate = StartVal Min = -32768 Max = 32767 Position = 0 TabOrder = 5 Wrap = False end object UpDown2: TUpDown Left = 273 Top = 16 Width = 15 Height = 21 Associate = EndVal Min = 0 Max = 32767 Position = 0 TabOrder = 6 Wrap = False end object StartVal: TEdit Left = 80 Top = 16 Width = 49 Height = 21 TabOrder = 4 Text = '0' OnChange = StartValChange end object EndVal: TEdit Left = 224 Top = 16 Width = 49 Height = 21 TabOrder = 0 Text = '0' OnChange = EndValChange end end