Page 1 of 1

Need HTML OBJECT code for TeeChart8.cab

Posted: Thu Sep 13, 2007 2:37 pm
by 15046694
I was intially using the following HTML to download TeeChart7.cab and it worked:

<OBJECT classid="CLSID:FAB9B41C-87D6-474D-AB7E-F07D78F2422E"
codebase="activeX/Teechart7.cab#version=7,0,0,8"
id=TChart1
TYPE="application/x-oleobject"
width=800
height=400
align=center
hspace=0
vspace=0>
</OBJECT>

Now that we have the signed version of TeeChart8.cab, I've tried the above, modified in the following way according to version 8 help:

<OBJECT classid="CLSID:FAB9B41C-87D6-474D-AB7E-F07D78F2422E"
codebase="activeX/Teechart8.cab#version=8,0,0,0"
id=TChart1
TYPE="application/x-oleobject"
width=800
height=400
align=center
hspace=0
vspace=0>
</OBJECT>

The activeX is no longer being downloaded successfully. The ClassID shows up in the IE Objects ActiveX list with status Unknown. The signed cab file Teechart 8 is located in the activeX folder referenced above. The example html page included with the TeeChart8.cab file does not work either, although it is referencing version 7.

I need to get this resolved as soon as possible. Any help/information is appreciated.

Posted: Thu Sep 13, 2007 3:06 pm
by narcis
Hi cakiger,

You should try changing the CLSID to BDEB0088-66F9-4A55-ABD2-0BF8DEEC1196 as described at Upgrading from TeeChart v7.pdf. You'll find all GUIDs in guids.txt in the Utilities folder under TeeChart's installation path.

Posted: Thu Sep 13, 2007 3:31 pm
by 15046694
Thanks! I figured it was something with the CLSID and sure enough everything works again. I'll remember to reference that file again in the future, instead of the documentation.