OWC 11 objects on an HTML page

R

Roman Bronowski

I am using a code as below to create pivot table and chart workspaces on an
HTML page.

For pivot table:
<object id=pivottable classid=CLSID:0002E552-0000-0000-C000-000000000046
style="width:100%;height:500"></object>
and for chart:
<object id=chart classid=CLSID:0002E556-0000-0000-C000-000000000046
style="width:100%;height:500"></object>

It works fine with OWC 10 but doesn't work with OWC 11 Beta 2. Does anybody
know why?

Best regards

Roman Bronowski



The object ID for a chart control on an HTML page or a Visual Basic form
returns a ChartSpace object.

The programmatic identifier for the ChartSpace object is
CLSID:0002E556-0000-0000-C000-000000000046. The following example creates a
chart workspace named "ChartSpace1" on an HTML page.

<object id=ChartSpace1 classid=CLSID:0002E556-0000-0000-C000-000000000046
style="width:100%;height:350"></object>
 
T

Thao Moua [ms]

Verify OWC11 Beta2 did not upgrade our OWC10 control. If
it did then your OWC10 controls will no longer work.
You'll need to either reinstall OWC10 or update the GUID
to use OWC11.

Chart 0002E55d-0000-0000-C000-000000000046
PivotTable 0002E55a-0000-0000-C000-000000000046

Thao Moua
OWC Webchart Support
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top