home *** CD-ROM | disk | FTP | other *** search
/ WinFiles.com / InfoMagic-WinFilesDotCom-June1998-Disc2of3-DAMAGED_DISC.iso / text-editors-q / QuickPAD101.exe / QuickPAD.exe / 0 / RCDATA / THELPFORM / THELPFORM.txt
Text File  |  1998-06-04  |  2KB  |  70 lines

  1. object HelpForm: THelpForm
  2.   Left = 243
  3.   Top = 153
  4.   BorderStyle = bsToolWindow
  5.   Caption = 'Help'
  6.   ClientHeight = 175
  7.   ClientWidth = 300
  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.   Position = poScreenCenter
  15.   PrintScale = poNone
  16.   Scaled = False
  17.   OnClose = FormClose
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object HelpMemo: TMemo
  21.     Left = 0
  22.     Top = 0
  23.     Width = 300
  24.     Height = 175
  25.     Align = alClient
  26.     Color = clMaroon
  27.     Font.Charset = DEFAULT_CHARSET
  28.     Font.Color = clFuchsia
  29.     Font.Height = -11
  30.     Font.Name = 'Fixedsys'
  31.     Font.Pitch = fpFixed
  32.     Font.Style = []
  33.     Lines.Strings = (
  34.       'HELP................ F1'
  35.       ''
  36.       'QUICK SAVE.......... F2'
  37.       'QUICK RELOAD........ F4'
  38.       ''
  39.       'PRINT............... F9'
  40.       ''
  41.       'MAXIMIZE/NORMAL..... F11'
  42.       'MINIMIZE............ F12'
  43.       ''
  44.       'EXIT................ F10'
  45.       ''
  46.       'JUMP TO TOP......... CTRL-HOME'
  47.       'JUMP TO BOTTOM...... CTRL-END'
  48.       ''
  49.       'ERASE............... DEL'
  50.       'ERASE LINE.......... CTRL-Y'
  51.       'COPY................ CTRL-C'
  52.       'CUT................. CTRL-X'
  53.       'PASTE............... CTRL-V'
  54.       'UNDO................ CTRL-Z'
  55.       ''
  56.       'INSERT 5 SPACES..... TAB'
  57.       ''
  58.       '--------------------------------'
  59.       'To contact the author;'
  60.       ''
  61.       'Mail:    philur_bias@hotmail.com'
  62.       '--------------------------------')
  63.     ParentFont = False
  64.     ReadOnly = True
  65.     ScrollBars = ssVertical
  66.     TabOrder = 0
  67.     OnKeyUp = HelpMemoKeyUp
  68.   end
  69. end
  70.