IDE.LicenseKeyForm.dfm 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. object LicenseKeyForm: TLicenseKeyForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = 'Enter Commercial License Key'
  7. ClientHeight = 200
  8. ClientWidth = 303
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -11
  13. Font.Name = 'MS Sans Serif'
  14. Font.Style = []
  15. Position = poScreenCenter
  16. OnCreate = FormCreate
  17. DesignSize = (
  18. 303
  19. 200)
  20. TextHeight = 13
  21. object GroupBox1: TGroupBox
  22. Left = 8
  23. Top = 8
  24. Width = 287
  25. Height = 154
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. Caption = 'Paste your license key below'
  28. ShowFrame = False
  29. TabOrder = 0
  30. DesignSize = (
  31. 287
  32. 154)
  33. object LicenseKeyMemo: TMemo
  34. Left = 8
  35. Top = 16
  36. Width = 270
  37. Height = 130
  38. Anchors = [akLeft, akTop, akRight, akBottom]
  39. TabOrder = 0
  40. OnChange = LicenseKeyMemoChange
  41. OnKeyDown = LicenseKeyMemoKeyDown
  42. end
  43. end
  44. object CancelButton: TButton
  45. Left = 213
  46. Top = 167
  47. Width = 73
  48. Height = 23
  49. Anchors = [akRight, akBottom]
  50. Cancel = True
  51. Caption = 'Close'
  52. ModalResult = 2
  53. TabOrder = 1
  54. end
  55. end