home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 November / Chip_2002-11_cd1.bin / ctenari / Hadraba / Source / HelpForm.dfm < prev    next >
Text File  |  2002-08-31  |  4KB  |  123 lines

  1. object HelpForm1: THelpForm1
  2.   Left = 284
  3.   Top = 302
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsToolWindow
  6.   Caption = 'AutoRun Version 1.0 Help'
  7.   ClientHeight = 377
  8.   ClientWidth = 321
  9.   Color = clWhite
  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.   PopupMenu = PopupMenu1
  17.   Position = poDesktopCenter
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Memo1: TMemo
  21.     Left = 8
  22.     Top = 8
  23.     Width = 305
  24.     Height = 361
  25.     Color = clWhite
  26.     Lines.Strings = (
  27.       'AutoRun Version 1.0'
  28.       'Copyright (c) 2002 Petr Hadraba - Hadraba-Soft'
  29.       ''
  30.       'autorun.ini file description:'
  31.       '-------------------------------'
  32.       ''
  33.       '[global]'
  34.       'CDName = Your CD name'
  35.       ''
  36.       '[items]'
  37.       'Item1 = First item name'
  38.       'Item1Command = First item command (.exe file or document)'
  39.       'Item2 = Second item name'
  40.       'Item2Command = Second item command (.exe file or '
  41.       '  document)'
  42.       '.'
  43.       '.'
  44.       'Itemn = nth item name (n is number)'
  45.       'ItemnCommand = nth item command (n is number)'
  46.       '  (.exe file or document)'
  47.       '(Do NOT include drive letter!)'
  48.       ''
  49.       '[options]'
  50.       'IconifyAfterExec = 1 (Hides AutoRun after execution)'
  51.       'CloseAfterExec = 1 (Closes AutoRun after execution)'
  52.       '(If all is set to zero, AutoRun stays on screen)'
  53.       '(CloseAfterClose has higher priority)'
  54.       'SortItems = 1 (Items will be sorted alphabetically)'
  55.       ''
  56.       '-------------------------------'
  57.       ''
  58.       '  You can simply rename this executable to your own name'
  59.       '(like CDStart.exe). In this case, AutoRun is looking for'
  60.       'new_name.ini (for example CDStart.ini).'
  61.       ''
  62.       '-------------------------------'
  63.       ''
  64.       'Tip:'
  65.       '  You can use direct command-line execution. The number '
  66.       'of parameters is unlimited... (EX: autorun.exe license.txt)'
  67.       ''
  68.       'Note:'
  69.       '  If you want to explore whole CD from command-line, '
  70.       'please use colon as separated parameter (autorun.exe :).'
  71.       '  If you want to test your AutoRun configuration, use'
  72.       'special drive (You can add new drive by using subst '
  73.       'command).'
  74.       ''
  75.       'Bugs:'
  76.       '  CDName doesn'#39't work under Windows 95, because Arial '
  77.       'Bold font is missing. Please, use short "sentences".')
  78.     PopupMenu = PopupMenu1
  79.     ReadOnly = True
  80.     ScrollBars = ssVertical
  81.     TabOrder = 0
  82.   end
  83.   object PopupMenu1: TPopupMenu
  84.     Left = 48
  85.     Top = 336
  86.     object Copytexttoclipboard1: TMenuItem
  87.       Action = CopyAction1
  88.     end
  89.     object N1: TMenuItem
  90.       Caption = '-'
  91.     end
  92.     object About1: TMenuItem
  93.       Action = AboutAction1
  94.     end
  95.     object Exit1: TMenuItem
  96.       Action = ExitAction1
  97.       Default = True
  98.     end
  99.   end
  100.   object ActionList1: TActionList
  101.     Left = 16
  102.     Top = 336
  103.     object ExitAction1: TAction
  104.       Category = 'System'
  105.       Caption = '&Close'
  106.       ShortCut = 27
  107.       OnExecute = ExitAction1Execute
  108.     end
  109.     object AboutAction1: TAction
  110.       Category = 'System'
  111.       Caption = '&About...'
  112.       ShortCut = 112
  113.       OnExecute = AboutAction1Execute
  114.     end
  115.     object CopyAction1: TAction
  116.       Category = 'View'
  117.       Caption = 'Copy &text to clipboard'
  118.       ShortCut = 16451
  119.       OnExecute = CopyAction1Execute
  120.     end
  121.   end
  122. end
  123.