I have found that I can't deploy code in a com object that trys to use the _reportlistener.vcx. For example:
The following code produces the report using the vfp classes on my development machine but does not when deployed to a test machine. Instead lolistener = .f.
The project includes classes: _htmllistener.vcx and _fixcursor.vcx
I Shield redistributables include: Gdiplus.dll, msvcf71.dll, MSVFP 9 Report Apps, MSVFP 9 Runtime Libs and MSXML4.0 twice.
Any help would be greatly appreciated. I am greatly stuck.
Oakgrove Computer Grouper
Lansing, MI
The following code produces the report using the vfp classes on my development machine but does not when deployed to a test machine. Instead lolistener = .f.
Code:
define class getstream as custom OlePublic
. . .
lctheoutput=""
loListener = .null.
Set Classlib To _reportlistener.vcx Additive
loListener = Createobject("htmllistener")
IF TYPE("lolistener") <> "O" then
CLOSE TABLES all
RETURN "Createobject('htmllistener') does not create an Object"
ELSE
Report Form regionbudget.frx Object loListener
lctheoutput=Filetostr(loListener.targetfilename)
return lctheoutput
. . .
enddefine
The project includes classes: _htmllistener.vcx and _fixcursor.vcx
I Shield redistributables include: Gdiplus.dll, msvcf71.dll, MSVFP 9 Report Apps, MSVFP 9 Runtime Libs and MSXML4.0 twice.
Any help would be greatly appreciated. I am greatly stuck.
Oakgrove Computer Grouper
Lansing, MI