123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- object Form1: TForm1
- Left = 0
- Top = 0
- Caption = 'RandomRange'
- ClientHeight = 145
- ClientWidth = 216
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -11
- Font.Name = 'Tahoma'
- Font.Style = []
- OldCreateOrder = False
- PixelsPerInch = 96
- TextHeight = 13
- object Label1: TLabel
- Left = 16
- Top = 19
- Width = 24
- Height = 13
- Caption = 'From'
- end
- object Label2: TLabel
- Left = 16
- Top = 67
- Width = 12
- Height = 13
- Caption = 'To'
- end
- object Button1: TButton
- Left = -1
- Top = 104
- Width = 75
- Height = 25
- Caption = 'Get'
- TabOrder = 0
- OnClick = Button1Click
- end
- object Edit1: TEdit
- Left = 80
- Top = 16
- Width = 121
- Height = 21
- TabOrder = 1
- Text = '0'
- end
- object Edit2: TEdit
- Left = 80
- Top = 64
- Width = 121
- Height = 21
- TabOrder = 2
- Text = '0'
- end
- object Edit3: TEdit
- Left = 80
- Top = 106
- Width = 121
- Height = 21
- TabOrder = 3
- Text = 'Result'
- end
- end
|