KNOWLEDGE BASE
Log In    |    Knowledge Base    |    4D Home
Tech Tip: Loading a report in plug-in area
PRODUCT: 4D | VERSION: 2003 | PLATFORM: Mac & Win
Published On: August 5, 2003

With the new Quick Report editor architecture, you may want to load an existing report into a plug-in area. This is simply done by loading the quick report document into a BLOB and assigning that BLOB to the Quick Report area.

In the example below, Path is the path to the Quick report file.

Case of
   : (Form event=On Load )
      C_BLOB($vTemp)
      DOCUMENT TO BLOB(Path;$vTemp)
      QR BLOB TO REPORT(QR_Area;$vTemp)
End case