ReadOnlyMsgBox.dfm 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. object frmReadOnlyMsgBox: TfrmReadOnlyMsgBox
  2. Left = 389
  3. Top = 287
  4. AutoSize = True
  5. BorderStyle = bsSingle
  6. Caption = 'frmReadOnlyMsgBox'
  7. ClientHeight = 89
  8. ClientWidth = 295
  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. FormStyle = fsStayOnTop
  16. OldCreateOrder = False
  17. Position = poScreenCenter
  18. OnResize = FormResize
  19. OnShow = FormShow
  20. PixelsPerInch = 96
  21. TextHeight = 13
  22. object imgIcon: TImage
  23. Left = 29
  24. Top = 8
  25. Width = 33
  26. Height = 33
  27. end
  28. object lblMessage: TLabel
  29. Left = 82
  30. Top = 18
  31. Width = 112
  32. Height = 13
  33. Caption = 'Set the message here...'
  34. end
  35. object Label2: TLabel
  36. Left = 0
  37. Top = 0
  38. Width = 29
  39. Height = 13
  40. AutoSize = False
  41. end
  42. object pnlButtons: TPanel
  43. Left = 0
  44. Top = 56
  45. Width = 295
  46. Height = 33
  47. BevelOuter = bvNone
  48. TabOrder = 0
  49. object Button3: TButton
  50. Left = 105
  51. Top = 5
  52. Width = 85
  53. Height = 25
  54. Caption = 'Save &As...'
  55. ModalResult = 6
  56. TabOrder = 1
  57. end
  58. object Button2: TButton
  59. Left = 13
  60. Top = 5
  61. Width = 85
  62. Height = 25
  63. Caption = '&Overwrite'
  64. Default = True
  65. ModalResult = 1
  66. TabOrder = 0
  67. end
  68. object Button1: TButton
  69. Left = 197
  70. Top = 5
  71. Width = 85
  72. Height = 25
  73. Cancel = True
  74. Caption = '&Cancel'
  75. ModalResult = 2
  76. TabOrder = 2
  77. end
  78. end
  79. end