ConfigureSiteForm.dfm 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. object frmConfigureSite: TfrmConfigureSite
  2. Left = 321
  3. Top = 279
  4. Width = 230
  5. Height = 263
  6. BorderIcons = [biSystemMenu]
  7. Caption = 'frmConfigureSite'
  8. Color = clBtnFace
  9. Constraints.MaxHeight = 263
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. OldCreateOrder = False
  16. Position = poDesktopCenter
  17. OnResize = FormResize
  18. OnShow = FormShow
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Label1: TLabel
  22. Left = 8
  23. Top = 8
  24. Width = 68
  25. Height = 13
  26. Caption = 'Display Name:'
  27. end
  28. object Label2: TLabel
  29. Left = 8
  30. Top = 48
  31. Width = 41
  32. Height = 13
  33. Caption = 'Address:'
  34. end
  35. object Label3: TLabel
  36. Left = 8
  37. Top = 88
  38. Width = 56
  39. Height = 13
  40. Caption = 'User Name:'
  41. end
  42. object Label4: TLabel
  43. Left = 8
  44. Top = 128
  45. Width = 49
  46. Height = 13
  47. Caption = 'Password:'
  48. end
  49. object Label5: TLabel
  50. Left = 8
  51. Top = 168
  52. Width = 58
  53. Height = 13
  54. Caption = 'Root Folder:'
  55. end
  56. object cbMaskPassword: TCheckBox
  57. Left = 168
  58. Top = 128
  59. Width = 49
  60. Height = 17
  61. Anchors = [akTop, akRight]
  62. Caption = 'Mask'
  63. Checked = True
  64. State = cbChecked
  65. TabOrder = 0
  66. OnClick = cbMaskPasswordClick
  67. end
  68. object edDisplayName: TEdit
  69. Left = 16
  70. Top = 24
  71. Width = 201
  72. Height = 21
  73. Anchors = [akLeft, akTop, akRight]
  74. TabOrder = 1
  75. Text = 'edDisplayName'
  76. end
  77. object edAddress: TEdit
  78. Left = 16
  79. Top = 64
  80. Width = 201
  81. Height = 21
  82. Anchors = [akLeft, akTop, akRight]
  83. TabOrder = 2
  84. Text = 'edAddress'
  85. end
  86. object edUserName: TEdit
  87. Left = 16
  88. Top = 104
  89. Width = 201
  90. Height = 21
  91. Anchors = [akLeft, akTop, akRight]
  92. TabOrder = 3
  93. Text = 'edUserName'
  94. end
  95. object edPassword: TEdit
  96. Left = 16
  97. Top = 144
  98. Width = 201
  99. Height = 21
  100. Anchors = [akLeft, akTop, akRight]
  101. TabOrder = 4
  102. Text = 'edPassword'
  103. end
  104. object btnCancel: TButton
  105. Left = 144
  106. Top = 208
  107. Width = 75
  108. Height = 25
  109. Caption = 'Cancel'
  110. ModalResult = 2
  111. TabOrder = 5
  112. end
  113. object btnOk: TButton
  114. Left = 72
  115. Top = 208
  116. Width = 67
  117. Height = 25
  118. Caption = 'Save'
  119. ModalResult = 1
  120. TabOrder = 6
  121. end
  122. object edRootFolder: TEdit
  123. Left = 16
  124. Top = 184
  125. Width = 201
  126. Height = 21
  127. Anchors = [akLeft, akTop, akRight]
  128. TabOrder = 7
  129. Text = 'edRootFolder'
  130. end
  131. object btnDelete: TButton
  132. Left = 8
  133. Top = 208
  134. Width = 57
  135. Height = 25
  136. Caption = 'Delete'
  137. ModalResult = 7
  138. TabOrder = 8
  139. end
  140. end