ErrorLookup.dfm 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. object frmErrorLookup: TfrmErrorLookup
  2. Left = 471
  3. Top = 363
  4. Width = 318
  5. Height = 221
  6. Caption = 'Error Lookup'
  7. Color = clBtnFace
  8. Font.Charset = DEFAULT_CHARSET
  9. Font.Color = clWindowText
  10. Font.Height = -11
  11. Font.Name = 'MS Sans Serif'
  12. Font.Style = []
  13. FormStyle = fsStayOnTop
  14. OldCreateOrder = False
  15. Position = poOwnerFormCenter
  16. OnShow = FormShow
  17. PixelsPerInch = 96
  18. TextHeight = 13
  19. object Panel1: TPanel
  20. Left = 0
  21. Top = 119
  22. Width = 310
  23. Height = 68
  24. Align = alBottom
  25. BevelOuter = bvNone
  26. TabOrder = 0
  27. DesignSize = (
  28. 310
  29. 68)
  30. object txtErrorLookup: TEdit
  31. Left = 8
  32. Top = 10
  33. Width = 295
  34. Height = 21
  35. Anchors = [akLeft, akTop, akRight]
  36. AutoSelect = False
  37. TabOrder = 0
  38. OnKeyPress = txtErrorLookupKeyPress
  39. end
  40. object btnLookUp: TButton
  41. Left = 148
  42. Top = 37
  43. Width = 75
  44. Height = 25
  45. Anchors = [akRight, akBottom]
  46. Caption = 'Lookup'
  47. Default = True
  48. TabOrder = 1
  49. OnClick = btnLookUpClick
  50. end
  51. object btnClose: TButton
  52. Left = 228
  53. Top = 37
  54. Width = 75
  55. Height = 25
  56. Anchors = [akRight, akBottom]
  57. Cancel = True
  58. Caption = '&Close'
  59. ModalResult = 1
  60. TabOrder = 2
  61. OnClick = btnCloseClick
  62. end
  63. end
  64. object Panel2: TPanel
  65. Left = 0
  66. Top = 0
  67. Width = 310
  68. Height = 119
  69. Align = alClient
  70. BevelOuter = bvNone
  71. BorderWidth = 8
  72. TabOrder = 1
  73. object memoErrorLookup: TMemo
  74. Left = 8
  75. Top = 8
  76. Width = 294
  77. Height = 103
  78. Align = alClient
  79. Color = clBtnFace
  80. ReadOnly = True
  81. ScrollBars = ssVertical
  82. TabOrder = 0
  83. end
  84. end
  85. end