License.dfm 894 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. object LicenseDialog: TLicenseDialog
  2. Left = 413
  3. Top = 230
  4. ActiveControl = CloseButton
  5. BorderIcons = [biSystemMenu]
  6. BorderStyle = bsDialog
  7. Caption = 'License'
  8. ClientHeight = 320
  9. ClientWidth = 504
  10. Color = clBtnFace
  11. ParentFont = True
  12. OldCreateOrder = True
  13. Position = poOwnerFormCenter
  14. DesignSize = (
  15. 504
  16. 320)
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object CloseButton: TButton
  20. Left = 421
  21. Top = 285
  22. Width = 75
  23. Height = 25
  24. Anchors = [akRight, akBottom]
  25. Cancel = True
  26. Caption = 'Close'
  27. Default = True
  28. ModalResult = 1
  29. TabOrder = 0
  30. end
  31. object LicenseMemo: TMemo
  32. Left = 8
  33. Top = 8
  34. Width = 489
  35. Height = 273
  36. Anchors = [akLeft, akTop, akRight]
  37. Color = clBtnFace
  38. ReadOnly = True
  39. ScrollBars = ssVertical
  40. TabOrder = 1
  41. WantReturns = False
  42. end
  43. end