Hi all,
I would like to open a preview with a previous saved fp3 file.
I'm using the following code but the error "Cannot find class prepared report appear". Any ideas ?
#include 'fivewin.ch'
#include 'FastRepH.CH'
function Main()
local FrPrn
FrPrn := frReportManager():new()
FrPrn:LoadFromFile("test.fp3")
FrPrn:ShowPreparedReport()
FrPrn:DestroyFR()
return nil