home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / Chip_2003-01_cd1.bin / zkuste / delphi / kolekce / d567 / FLEXCEL.ZIP / Demo / Thread / UAbout.dfm < prev    next >
Encoding:
Text File  |  2002-09-28  |  1.8 KB  |  71 lines

  1. object About: TAbout
  2.   Left = 191
  3.   Top = 104
  4.   Width = 454
  5.   Height = 404
  6.   Caption = 'Help'
  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.   OldCreateOrder = False
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object PanelCommand: TPanel
  17.     Left = 0
  18.     Top = 0
  19.     Width = 446
  20.     Height = 25
  21.     Align = alTop
  22.     BevelOuter = bvLowered
  23.     Caption = 'About the Thread Demo'
  24.     Color = clGray
  25.     Font.Charset = ANSI_CHARSET
  26.     Font.Color = clWhite
  27.     Font.Height = -13
  28.     Font.Name = 'Arial'
  29.     Font.Style = [fsBold]
  30.     ParentFont = False
  31.     TabOrder = 0
  32.   end
  33.   object Memo1: TMemo
  34.     Left = 0
  35.     Top = 25
  36.     Width = 446
  37.     Height = 352
  38.     Align = alClient
  39.     Font.Charset = ANSI_CHARSET
  40.     Font.Color = clWindowText
  41.     Font.Height = -13
  42.     Font.Name = 'Arial'
  43.     Font.Style = [fsBold]
  44.     Lines.Strings = (
  45.       ''
  46.       'This demo shows how to run FlexCel in separate threads.'
  47.       ''
  48.       'Each time you press the "New Report" button, a new report is '
  49.       'generated, and added to the '
  50.       
  51.         'report list. You can cancel a running report by clicking on "Can' +
  52.         'cel"'
  53.       ''
  54.       'Reports are created so they are big and they take some time to '
  55.       'process, they don'#39't make '
  56.       'any sense. They are automatically deleted after generating.'
  57.       ''
  58.       
  59.         'Sometimes you can get a "Share violation" error, this is because' +
  60.         ' '
  61.       'the file already exists.'
  62.       ''
  63.       
  64.         'IF you get an out of memory error, that'#39's a BDE problem... well,' +
  65.         ' you '
  66.       'shouldn'#39't use BDE for multithreading anyway.')
  67.     ParentFont = False
  68.     TabOrder = 1
  69.   end
  70. end
  71.