EditParam.dfm 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. object frmEditParam: TfrmEditParam
  2. Left = 391
  3. Top = 315
  4. BorderStyle = bsToolWindow
  5. Caption = 'Edit Parameter'
  6. ClientHeight = 128
  7. ClientWidth = 272
  8. Color = clBtnFace
  9. Font.Charset = DEFAULT_CHARSET
  10. Font.Color = clWindowText
  11. Font.Height = -11
  12. Font.Name = 'MS Sans Serif'
  13. Font.Style = []
  14. OldCreateOrder = False
  15. Position = poScreenCenter
  16. DesignSize = (
  17. 272
  18. 128)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object Label1: TLabel
  22. Left = 16
  23. Top = 8
  24. Width = 31
  25. Height = 13
  26. Caption = 'Name:'
  27. end
  28. object Label2: TLabel
  29. Left = 16
  30. Top = 52
  31. Width = 47
  32. Height = 13
  33. Caption = 'Comment:'
  34. end
  35. object btnCancel: TButton
  36. Left = 190
  37. Top = 96
  38. Width = 75
  39. Height = 25
  40. Anchors = [akRight, akBottom]
  41. Cancel = True
  42. Caption = '&Cancel'
  43. ModalResult = 2
  44. TabOrder = 0
  45. end
  46. object btnOK: TButton
  47. Left = 110
  48. Top = 96
  49. Width = 75
  50. Height = 25
  51. Anchors = [akRight, akBottom]
  52. Caption = '&OK'
  53. Default = True
  54. ModalResult = 1
  55. TabOrder = 1
  56. OnClick = btnOKClick
  57. end
  58. object txtName: TEdit
  59. Left = 16
  60. Top = 22
  61. Width = 241
  62. Height = 21
  63. Anchors = [akLeft, akTop, akRight]
  64. TabOrder = 2
  65. end
  66. object txtComment: TEdit
  67. Left = 16
  68. Top = 66
  69. Width = 241
  70. Height = 21
  71. Anchors = [akLeft, akTop, akRight]
  72. TabOrder = 3
  73. end
  74. end