home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kolekce / d56 / DM2KVCL.ZIP / WKSDEMO / WKSDEMOU.DFM / WKSDEMOU.txt
Text File  |  2000-09-13  |  5KB  |  207 lines

  1. object WKSDemoForm: TWKSDemoForm
  2.   Left = 297
  3.   Top = 175
  4.   Width = 400
  5.   Height = 341
  6.   Caption = 'Worksheet demo'
  7.   Color = clBtnFace
  8.   Constraints.MinHeight = 300
  9.   Constraints.MinWidth = 400
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   Position = poScreenCenter
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Panel1: TPanel
  20.     Left = 0
  21.     Top = 207
  22.     Width = 392
  23.     Height = 107
  24.     Align = alBottom
  25.     TabOrder = 0
  26.     object Label1: TLabel
  27.       Left = 4
  28.       Top = 4
  29.       Width = 62
  30.       Height = 13
  31.       Caption = 'Column titles:'
  32.       FocusControl = TitlesMemo
  33.     end
  34.     object TitlesMemo: TMemo
  35.       Left = 4
  36.       Top = 24
  37.       Width = 117
  38.       Height = 77
  39.       Lines.Strings = (
  40.         'Value'
  41.         'Square')
  42.       TabOrder = 0
  43.     end
  44.     object CopyTitlesButton: TButton
  45.       Left = 76
  46.       Top = 4
  47.       Width = 45
  48.       Height = 17
  49.       Caption = 'Copy'
  50.       TabOrder = 1
  51.       OnClick = CopyTitlesButtonClick
  52.     end
  53.     object AlignRightCheckBox: TCheckBox
  54.       Left = 136
  55.       Top = 4
  56.       Width = 129
  57.       Height = 21
  58.       Caption = 'AlignRight property'
  59.       TabOrder = 2
  60.       OnClick = AlignRightCheckBoxClick
  61.     end
  62.     object DrawHeadersCheckBox: TCheckBox
  63.       Left = 136
  64.       Top = 20
  65.       Width = 129
  66.       Height = 17
  67.       Caption = 'DrawHeaders property'
  68.       TabOrder = 3
  69.       OnClick = DrawHeadersCheckBoxClick
  70.     end
  71.     object CopyButton: TButton
  72.       Left = 272
  73.       Top = 8
  74.       Width = 109
  75.       Height = 25
  76.       Caption = 'Copy to clipboard'
  77.       TabOrder = 4
  78.       OnClick = CopyButtonClick
  79.     end
  80.     object PasteButton: TButton
  81.       Left = 272
  82.       Top = 44
  83.       Width = 109
  84.       Height = 25
  85.       Caption = 'Paste from clipboard'
  86.       TabOrder = 5
  87.       OnClick = PasteButtonClick
  88.     end
  89.     object InsLinesCheckBox: TCheckBox
  90.       Left = 136
  91.       Top = 37
  92.       Width = 129
  93.       Height = 13
  94.       Caption = 'Insert Lines'
  95.       TabOrder = 6
  96.     end
  97.     object DeleteButton: TButton
  98.       Left = 272
  99.       Top = 76
  100.       Width = 109
  101.       Height = 25
  102.       Caption = 'Delete'
  103.       TabOrder = 7
  104.       OnClick = DeleteButtonClick
  105.     end
  106.     object OverwriteCheckBox: TCheckBox
  107.       Left = 136
  108.       Top = 53
  109.       Width = 129
  110.       Height = 17
  111.       Caption = 'Overwrite'
  112.       TabOrder = 8
  113.     end
  114.     object EditCheckBox: TCheckBox
  115.       Left = 136
  116.       Top = 70
  117.       Width = 129
  118.       Height = 17
  119.       Caption = 'Editable'
  120.       TabOrder = 9
  121.       OnClick = EditCheckBoxClick
  122.     end
  123.     object ModifiedCheckBox: TCheckBox
  124.       Left = 136
  125.       Top = 86
  126.       Width = 129
  127.       Height = 17
  128.       Caption = 'Data modified'
  129.       Font.Charset = RUSSIAN_CHARSET
  130.       Font.Color = clRed
  131.       Font.Height = -11
  132.       Font.Name = 'MS Sans Serif'
  133.       Font.Style = []
  134.       ParentFont = False
  135.       TabOrder = 10
  136.     end
  137.   end
  138.   object Worksheet: TWorksheet
  139.     Left = 0
  140.     Top = 0
  141.     Width = 392
  142.     Height = 207
  143.     Align = alClient
  144.     ColCount = 27
  145.     FixedColor = clTeal
  146.     RowCount = 22
  147.     Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goThumbTracking]
  148.     TabOrder = 1
  149.     Container = Container
  150.     BlockColorF = clBlack
  151.     BlockColorB = clAqua
  152.     AlignRight = False
  153.     DrawHeaders = False
  154.     Header.Strings = (
  155.       'a'
  156.       'b'
  157.       'c'
  158.       'd'
  159.       'e'
  160.       'f'
  161.       'g'
  162.       'h'
  163.       'i'
  164.       'j'
  165.       'k'
  166.       'l'
  167.       'm'
  168.       'n'
  169.       'o'
  170.       'p'
  171.       'q'
  172.       'r'
  173.       's'
  174.       't'
  175.       'u'
  176.       'v'
  177.       'w'
  178.       'x'
  179.       'y'
  180.       'z')
  181.   end
  182.   object Container: TContainer
  183.     FileName = 'NONAME0.dat'
  184.     DataType = dtRealData
  185.     UpdateCaption = False
  186.     AutoLoad = True
  187.     OnChanged = ContainerChanged
  188.     Left = 172
  189.     Top = 120
  190.     Data = {
  191.       0314000000020000000000000080FF3F0000000000000080FF3F020000000000
  192.       0000800040000000000000008001400200000000000000C00040000000000000
  193.       0090024002000000000000008001400000000000000080034002000000000000
  194.       00A0014000000000000000C803400200000000000000C0014000000000000000
  195.       9004400200000000000000E0014000000000000000C404400200000000000000
  196.       80024000000000000000800540020000000000000090024000000000000000A2
  197.       05400200000000000000A0024000000000000000C805400200000000000000B0
  198.       024000000000000000F205400200000000000000C00240000000000000009006
  199.       400200000000000000D0024000000000000000A906400200000000000000E002
  200.       4000000000000000C406400200000000000000F0024000000000000000E10640
  201.       0200000000000000800340000000000000008007400200000000000000880340
  202.       00000000000080900740020000000000000090034000000000000000A2074002
  203.       0000000000000098034000000000000080B407400200000000000000A0034000
  204.       000000000000C80740}
  205.   end
  206. end
  207.