Banner.dfm 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. object BannerDialog: TBannerDialog
  2. Left = 413
  3. Top = 230
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_banner'
  6. ActiveControl = CloseButton
  7. BorderIcons = [biSystemMenu]
  8. BorderStyle = bsDialog
  9. Caption = 'Authentication Banner'
  10. ClientHeight = 291
  11. ClientWidth = 440
  12. Color = clBtnFace
  13. ParentFont = True
  14. OldCreateOrder = True
  15. Position = poOwnerFormCenter
  16. DesignSize = (
  17. 440
  18. 291)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object CloseButton: TButton
  22. Left = 273
  23. Top = 256
  24. Width = 75
  25. Height = 25
  26. Anchors = [akRight, akBottom]
  27. Cancel = True
  28. Caption = 'Close'
  29. Default = True
  30. ModalResult = 1
  31. TabOrder = 0
  32. end
  33. object BannerMemo: TMemo
  34. Left = 8
  35. Top = 8
  36. Width = 425
  37. Height = 244
  38. Anchors = [akLeft, akTop, akRight, akBottom]
  39. Color = clBtnFace
  40. ReadOnly = True
  41. ScrollBars = ssVertical
  42. TabOrder = 2
  43. WantReturns = False
  44. end
  45. object NeverShowAgainCheck: TCheckBox
  46. Left = 15
  47. Top = 262
  48. Width = 250
  49. Height = 17
  50. Anchors = [akLeft, akRight, akBottom]
  51. Caption = '&Never show this banner again'
  52. TabOrder = 3
  53. end
  54. object HelpButton: TButton
  55. Left = 357
  56. Top = 256
  57. Width = 75
  58. Height = 25
  59. Anchors = [akRight, akBottom]
  60. Caption = '&Help'
  61. TabOrder = 1
  62. OnClick = HelpButtonClick
  63. end
  64. end