AddBreakpoint.dfm 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. object frmAddBreakpoint: TfrmAddBreakpoint
  2. Left = 374
  3. Top = 249
  4. BorderStyle = bsDialog
  5. Caption = 'Add Breakpoint'
  6. ClientHeight = 176
  7. ClientWidth = 369
  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. FormStyle = fsStayOnTop
  15. OldCreateOrder = False
  16. Position = poOwnerFormCenter
  17. OnShow = FormShow
  18. PixelsPerInch = 96
  19. TextHeight = 13
  20. object Panel1: TPanel
  21. Left = 0
  22. Top = 135
  23. Width = 369
  24. Height = 41
  25. Align = alBottom
  26. BevelOuter = bvNone
  27. TabOrder = 0
  28. DesignSize = (
  29. 369
  30. 41)
  31. object Button1: TButton
  32. Left = 288
  33. Top = 10
  34. Width = 75
  35. Height = 25
  36. Anchors = [akRight, akBottom]
  37. Cancel = True
  38. Caption = '&Cancel'
  39. ModalResult = 2
  40. TabOrder = 1
  41. end
  42. object Button2: TButton
  43. Left = 208
  44. Top = 10
  45. Width = 75
  46. Height = 25
  47. Anchors = [akRight, akBottom]
  48. Caption = '&OK'
  49. Default = True
  50. ModalResult = 1
  51. TabOrder = 0
  52. OnClick = Button2Click
  53. end
  54. end
  55. object Panel2: TPanel
  56. Left = 0
  57. Top = 0
  58. Width = 369
  59. Height = 135
  60. Align = alClient
  61. BevelOuter = bvNone
  62. TabOrder = 1
  63. object Label1: TLabel
  64. Left = 16
  65. Top = 16
  66. Width = 22
  67. Height = 13
  68. Caption = 'Unit:'
  69. end
  70. object Label2: TLabel
  71. Left = 16
  72. Top = 56
  73. Width = 47
  74. Height = 13
  75. Caption = 'Condition:'
  76. end
  77. object Label3: TLabel
  78. Left = 16
  79. Top = 96
  80. Width = 23
  81. Height = 13
  82. Caption = 'Line:'
  83. end
  84. object cboUnits: TComboBox
  85. Left = 16
  86. Top = 32
  87. Width = 337
  88. Height = 21
  89. Style = csDropDownList
  90. ItemHeight = 13
  91. TabOrder = 0
  92. end
  93. object txtCondition: TEdit
  94. Left = 16
  95. Top = 72
  96. Width = 337
  97. Height = 21
  98. TabOrder = 1
  99. end
  100. object txtLine: TEdit
  101. Left = 16
  102. Top = 112
  103. Width = 89
  104. Height = 21
  105. MaxLength = 6
  106. TabOrder = 2
  107. OnKeyPress = txtLineKeyPress
  108. end
  109. end
  110. end