CompSignTools.dfm 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. object SignToolsForm: TSignToolsForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. Caption = 'Configure Sign Tools'
  6. ClientHeight = 247
  7. ClientWidth = 577
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. OldCreateOrder = True
  15. Position = poScreenCenter
  16. OnCreate = FormCreate
  17. OnDestroy = FormDestroy
  18. DesignSize = (
  19. 577
  20. 247)
  21. PixelsPerInch = 96
  22. TextHeight = 13
  23. object GroupBox1: TGroupBox
  24. Left = 8
  25. Top = 8
  26. Width = 561
  27. Height = 201
  28. Anchors = [akLeft, akTop, akRight, akBottom]
  29. Caption = ' Sign Tools '
  30. TabOrder = 0
  31. DesignSize = (
  32. 561
  33. 201)
  34. object SignToolsListBox: TListBox
  35. Left = 8
  36. Top = 16
  37. Width = 465
  38. Height = 177
  39. Anchors = [akLeft, akTop, akRight, akBottom]
  40. ItemHeight = 13
  41. TabOrder = 0
  42. OnClick = SignToolsListBoxClick
  43. end
  44. object AddButton: TButton
  45. Left = 480
  46. Top = 18
  47. Width = 73
  48. Height = 23
  49. Anchors = [akTop, akRight]
  50. Caption = '&Add...'
  51. Default = True
  52. TabOrder = 1
  53. OnClick = AddButtonClick
  54. end
  55. object RemoveButton: TButton
  56. Left = 480
  57. Top = 74
  58. Width = 73
  59. Height = 23
  60. Anchors = [akTop, akRight]
  61. Caption = 'Remo&ve'
  62. TabOrder = 3
  63. OnClick = RemoveButtonClick
  64. end
  65. object EditButton: TButton
  66. Left = 480
  67. Top = 46
  68. Width = 73
  69. Height = 23
  70. Anchors = [akTop, akRight]
  71. Caption = '&Edit...'
  72. TabOrder = 2
  73. OnClick = EditButtonClick
  74. end
  75. end
  76. object OKButton: TButton
  77. Left = 416
  78. Top = 217
  79. Width = 73
  80. Height = 23
  81. Anchors = [akRight, akBottom]
  82. Caption = 'OK'
  83. Default = True
  84. ModalResult = 1
  85. TabOrder = 1
  86. end
  87. object CancelButton: TButton
  88. Left = 496
  89. Top = 217
  90. Width = 73
  91. Height = 23
  92. Anchors = [akRight, akBottom]
  93. Cancel = True
  94. Caption = 'Cancel'
  95. ModalResult = 2
  96. TabOrder = 2
  97. end
  98. end