AsciiTable.dfm 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. object frmAsciiTable: TfrmAsciiTable
  2. Left = 416
  3. Top = 215
  4. Width = 400
  5. Height = 475
  6. Caption = 'Ascii Table'
  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 = 400
  22. Width = 392
  23. Height = 41
  24. Align = alBottom
  25. BevelOuter = bvNone
  26. TabOrder = 0
  27. DesignSize = (
  28. 392
  29. 41)
  30. object Label1: TLabel
  31. Left = 8
  32. Top = 16
  33. Width = 83
  34. Height = 13
  35. Caption = 'Enter Ascii Value:'
  36. end
  37. object btnClose: TButton
  38. Left = 312
  39. Top = 10
  40. Width = 75
  41. Height = 25
  42. Anchors = [akRight, akBottom]
  43. Cancel = True
  44. Caption = '&Close'
  45. Default = True
  46. ModalResult = 1
  47. TabOrder = 0
  48. end
  49. object btnGetValue: TButton
  50. Left = 232
  51. Top = 10
  52. Width = 75
  53. Height = 25
  54. Anchors = [akRight, akBottom]
  55. Caption = '&Get Value'
  56. TabOrder = 1
  57. OnClick = btnGetValueClick
  58. end
  59. object txtAscii: TEdit
  60. Left = 96
  61. Top = 12
  62. Width = 25
  63. Height = 21
  64. MaxLength = 1
  65. TabOrder = 2
  66. end
  67. end
  68. object Panel2: TPanel
  69. Left = 0
  70. Top = 0
  71. Width = 392
  72. Height = 400
  73. Align = alClient
  74. BevelOuter = bvNone
  75. TabOrder = 1
  76. object memoAsciiTable: TMemo
  77. Left = 0
  78. Top = 0
  79. Width = 392
  80. Height = 400
  81. Align = alClient
  82. Font.Charset = ANSI_CHARSET
  83. Font.Color = clWindowText
  84. Font.Height = -11
  85. Font.Name = 'Courier New'
  86. Font.Style = []
  87. ParentFont = False
  88. ReadOnly = True
  89. ScrollBars = ssBoth
  90. TabOrder = 0
  91. WordWrap = False
  92. end
  93. end
  94. end