home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / QDB / QDBV.ZIP / RestHelp.dfm / RestHelp.txt
Text File  |  1998-07-29  |  2KB  |  72 lines

  1. object RestructureHelpForm: TRestructureHelpForm
  2.   Left = 296
  3.   Top = 171
  4.   Width = 516
  5.   Height = 480
  6.   BorderIcons = [biMinimize]
  7.   Caption = 'RestructureHelpForm'
  8.   Font.Color = clWindowText
  9.   Font.Height = -13
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 120
  13.   TextHeight = 16
  14.   object Memo1: TMemo
  15.     Left = 24
  16.     Top = 24
  17.     Width = 457
  18.     Height = 377
  19.     Font.Color = clWindowText
  20.     Font.Height = -17
  21.     Font.Name = 'Courier New'
  22.     Font.Style = []
  23.     Lines.Strings = (
  24.       'RESTRUCTURING A QDB FILE'
  25.       ''
  26.       
  27.         'In the restructuring grid the left hand column lists the fields ' +
  28.         'defined by the panel associated with your QDBPanel component whi' +
  29.         'le the right hand column lists the fields defined by the associa' +
  30.         'ted QDB file.'
  31.       ''
  32.       
  33.         'You can drag the fields in the right column to be alongside any ' +
  34.         'of those in the left column. After the file is restructured it w' +
  35.         'ill possess all the fields in the left column and any items of d' +
  36.         'ata in the file will have been rearranged. For example:'
  37.       ''
  38.       'before dragging and dropping '
  39.       ''
  40.       #9'FirstName'#9'Edit1'
  41.       #9'LastName'#9'Edit2'
  42.       #9'PhoneNum'#9'Edit3'
  43.       ''
  44.       'after dragging and dropping'
  45.       ''
  46.       #9'FirstName'#9'Edit2'
  47.       #9'LastName'#9'Edit1'
  48.       #9'PhoneNum'
  49.       #9#9#9'Edit3'
  50.       ''
  51.       
  52.         'The new FirstName field will get the previous contents of the Ed' +
  53.         'it2 field; LastName will get Edit1; and PhoneNum will be empty (' +
  54.         'and the contents of Edit3 will be discarded).')
  55.     ParentFont = False
  56.     ReadOnly = True
  57.     ScrollBars = ssVertical
  58.     TabOrder = 0
  59.     WordWrap = False
  60.   end
  61.   object Close: TButton
  62.     Left = 208
  63.     Top = 416
  64.     Width = 75
  65.     Height = 25
  66.     Cancel = True
  67.     Caption = 'Close'
  68.     ModalResult = 2
  69.     TabOrder = 1
  70.   end
  71. end
  72.