IDE.InputQueryMemoForm.dfm 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. object InputQueryMemoForm: TInputQueryMemoForm
  2. Left = 330
  3. Top = 188
  4. BorderIcons = [biSystemMenu]
  5. BorderStyle = bsDialog
  6. Caption = '...'
  7. ClientHeight = 141
  8. ClientWidth = 582
  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. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  17. OnCreate = FormCreate
  18. DesignSize = (
  19. 582
  20. 141)
  21. TextHeight = 13
  22. object PromptLabel: TLabel
  23. Left = 8
  24. Top = 11
  25. Width = 9
  26. Height = 13
  27. Caption = '...'
  28. FocusControl = ValueControl
  29. end
  30. object DocBitBtn: TBitmapButton
  31. Left = 6
  32. Top = 113
  33. Width = 20
  34. Height = 20
  35. Cursor = crHandPoint
  36. Anchors = [akLeft, akBottom]
  37. Caption = 'Help'
  38. TabOrder = 1
  39. end
  40. object OKButton: TButton
  41. Left = 421
  42. Top = 111
  43. Width = 73
  44. Height = 23
  45. Anchors = [akRight, akBottom]
  46. Caption = 'OK'
  47. Default = True
  48. ModalResult = 1
  49. TabOrder = 2
  50. end
  51. object CancelButton: TButton
  52. Left = 501
  53. Top = 111
  54. Width = 73
  55. Height = 23
  56. Anchors = [akRight, akBottom]
  57. Cancel = True
  58. Caption = 'Cancel'
  59. ModalResult = 2
  60. TabOrder = 3
  61. end
  62. object ValueControl: TMemo
  63. Left = 279
  64. Top = 8
  65. Width = 295
  66. Height = 89
  67. Anchors = [akLeft, akTop, akRight]
  68. TabOrder = 0
  69. OnChange = ValueControlChange
  70. OnKeyDown = ValueControlKeyDown
  71. OnKeyPress = ValueControlKeyPress
  72. end
  73. end