About.dfm 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. object AboutDialog: TAboutDialog
  2. Left = 373
  3. Top = 123
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_about'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'About application'
  9. ClientHeight = 501
  10. ClientWidth = 410
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = True
  14. Position = poOwnerFormCenter
  15. DesignSize = (
  16. 410
  17. 501)
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object OKButton: TButton
  21. Left = 243
  22. Top = 468
  23. Width = 75
  24. Height = 25
  25. Anchors = [akRight, akBottom]
  26. Cancel = True
  27. Caption = 'OK'
  28. Default = True
  29. ModalResult = 1
  30. TabOrder = 0
  31. OnMouseDown = OKButtonMouseDown
  32. end
  33. object LicenseButton: TButton
  34. Left = 62
  35. Top = 468
  36. Width = 75
  37. Height = 25
  38. Anchors = [akLeft, akBottom]
  39. Caption = '&License...'
  40. TabOrder = 2
  41. OnClick = LicenseButtonClick
  42. end
  43. object HelpButton: TButton
  44. Left = 325
  45. Top = 468
  46. Width = 75
  47. Height = 25
  48. Anchors = [akRight, akBottom]
  49. Caption = '&Help'
  50. TabOrder = 1
  51. OnClick = HelpButtonClick
  52. end
  53. object Panel: TPanel
  54. Left = 0
  55. Top = 0
  56. Width = 410
  57. Height = 460
  58. Anchors = [akLeft, akTop, akRight, akBottom]
  59. BevelOuter = bvNone
  60. Color = clWindow
  61. ParentBackground = False
  62. TabOrder = 3
  63. DesignSize = (
  64. 410
  65. 460)
  66. object ApplicationLabel: TLabel
  67. Left = 62
  68. Top = 12
  69. Width = 52
  70. Height = 13
  71. Caption = 'Application'
  72. end
  73. object VersionLabel: TLabel
  74. Left = 62
  75. Top = 28
  76. Width = 127
  77. Height = 13
  78. Caption = 'Version 2.0.0 (Build 12) XX'
  79. end
  80. object WinSCPCopyrightLabel: TLabel
  81. Left = 62
  82. Top = 56
  83. Width = 180
  84. Height = 13
  85. Caption = 'Copyright '#169' 2000-2003 Martin Prikryl'
  86. end
  87. object ProductSpecificMessageLabel: TLabel
  88. Left = 62
  89. Top = 100
  90. Width = 277
  91. Height = 13
  92. Caption = 'To send comments and report bugs use support forum at:'
  93. end
  94. object Label3: TLabel
  95. Left = 62
  96. Top = 259
  97. Width = 91
  98. Height = 13
  99. Caption = 'Portions copyright:'
  100. end
  101. object RegistrationLabel: TLabel
  102. Left = 62
  103. Top = 144
  104. Width = 127
  105. Height = 13
  106. Caption = 'This product is licensed to:'
  107. end
  108. object IconPaintBox: TPaintBox
  109. Left = 8
  110. Top = 11
  111. Width = 48
  112. Height = 48
  113. OnPaint = IconPaintBoxPaint
  114. end
  115. object HomepageLabel: TStaticText
  116. Left = 62
  117. Top = 72
  118. Width = 128
  119. Height = 17
  120. Caption = 'http://XXXXXXwinscp.net/'
  121. TabOrder = 0
  122. TabStop = True
  123. end
  124. object ForumUrlLabel: TStaticText
  125. Left = 62
  126. Top = 116
  127. Width = 148
  128. Height = 17
  129. Caption = 'http://XXXXwinscp.net/forum/'
  130. TabOrder = 1
  131. TabStop = True
  132. end
  133. object ThirdPartyPanel: TPanel
  134. Left = 62
  135. Top = 277
  136. Width = 338
  137. Height = 168
  138. Anchors = [akLeft, akTop, akRight]
  139. BevelKind = bkTile
  140. BevelOuter = bvNone
  141. ParentColor = True
  142. TabOrder = 2
  143. end
  144. object RegistrationBox: TPanel
  145. Left = 62
  146. Top = 162
  147. Width = 338
  148. Height = 89
  149. Anchors = [akLeft, akTop, akRight]
  150. BevelKind = bkTile
  151. BevelOuter = bvNone
  152. ParentBackground = False
  153. ParentColor = True
  154. TabOrder = 3
  155. DesignSize = (
  156. 334
  157. 85)
  158. object RegistrationSubjectLabel: TLabel
  159. Left = 8
  160. Top = 8
  161. Width = 245
  162. Height = 65
  163. Anchors = [akLeft, akTop, akRight]
  164. AutoSize = False
  165. Caption = 'Someone'#13#10'Somewhere, some city'
  166. WordWrap = True
  167. end
  168. object RegistrationLicensesLabel: TLabel
  169. Left = 8
  170. Top = 43
  171. Width = 106
  172. Height = 13
  173. Caption = 'Number of Licenses: X'
  174. end
  175. object RegistrationProductIdLabel: TStaticText
  176. Left = 8
  177. Top = 65
  178. Width = 148
  179. Height = 17
  180. Caption = 'Product ID: xxxx-xxxx-xxxxx'
  181. TabOrder = 0
  182. OnClick = RegistrationProductIdLabelClick
  183. end
  184. end
  185. end
  186. end