Fix in fwh\source\function\olefuncs.prg:
----------------------------------------
Please replace the functions GetOleObject(), WinWordObj(), ExcelObj() and SunCalcObj() in your version of \fwh\source\function\olefuncs.prg with the following code:
----------------------------------------
Please replace the functions GetOleObject(), WinWordObj(), ExcelObj() and SunCalcObj() in your version of \fwh\source\function\olefuncs.prg with the following code:
//----------------------------------------------------------------------------//
function FWGetOleObject( cApp )
local oObj
TRY
oObj := GetActiveObject( cApp )
CATCH
TRY
oObj := CreateObject( cApp )
CATCH
END
END
return oObj
//----------------------------------------------------------------------------//
function WinWordObj(); return FWGetOleObject( "Word.Application" )
function ExcelObj(); return FWGetOleObject( "Excel.Application" )
function SunCalcObj(); return FWGetOleObject( "com.sun.star.ServiceManager" )
//----------------------------------------------------------------------------//