Unit1.dfm 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. object Form1: TForm1
  2. Left = 0
  3. Top = 0
  4. Caption = 'RandomRange'
  5. ClientHeight = 145
  6. ClientWidth = 216
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'Tahoma'
  12. Font.Style = []
  13. OldCreateOrder = False
  14. PixelsPerInch = 96
  15. TextHeight = 13
  16. object Label1: TLabel
  17. Left = 16
  18. Top = 19
  19. Width = 24
  20. Height = 13
  21. Caption = 'From'
  22. end
  23. object Label2: TLabel
  24. Left = 16
  25. Top = 67
  26. Width = 12
  27. Height = 13
  28. Caption = 'To'
  29. end
  30. object Button1: TButton
  31. Left = -1
  32. Top = 104
  33. Width = 75
  34. Height = 25
  35. Caption = 'Get'
  36. TabOrder = 0
  37. OnClick = Button1Click
  38. end
  39. object Edit1: TEdit
  40. Left = 80
  41. Top = 16
  42. Width = 121
  43. Height = 21
  44. TabOrder = 1
  45. Text = '0'
  46. end
  47. object Edit2: TEdit
  48. Left = 80
  49. Top = 64
  50. Width = 121
  51. Height = 21
  52. TabOrder = 2
  53. Text = '0'
  54. end
  55. object Edit3: TEdit
  56. Left = 80
  57. Top = 106
  58. Width = 121
  59. Height = 21
  60. TabOrder = 3
  61. Text = 'Result'
  62. end
  63. end