Spreadsheet web component

P

Phil

I tried using the clsid 0002E510-0000-0000-C000-000000000046 in a test html
doc:

<html>
<body>
<object classid="clsid:0002E510-0000-0000-C000-000000000046"
id="Spreadsheet1">
</object>
<input type=button value="button" name=button1>
<script language=javascript for="button1" event="onclick">
var z = new Array(3);
z[0]="aaa";
z[1]="bbb";
z[2]="ccc";
Spreadsheet1.Range("a1:c1").Value=z;
</script>
</body>
</html>

This works on a machine with Office 2000, but not on one with Office 2003.
On the latter, I get this error:

Error: Object doesn't support this property or method

Any ideas?
 

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