ASP 0177 - CreateObject

S

Sean McPoland

Hi all,

First things first :

Clean Install Windows 2003 Server with IIS 6.0
Clean Install Office 2003 PRO (complete install)
Clean Install file\OWC11\Setup.exe
REBOOT

My Page has the following code:

<%
set objFS = server.CreateObject
("Scripting.FileSystemObject")
response.Write("OWC.Chart") & "<br />"
set objChartSpace = server.CreateObject("OWC.Chart")
set objChartSpaceConstants = objChartSpace.Constants

set objChart = objChartSpace.Charts.Add()
objChart.type = objChartSpaceConstants.chChartTypeLine
objChart.HasLegend = True
....%>

The first Server.CreateObject Works; but the next one does
not and gives:

OWC.Chart
Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/rb/temp/temp.asp, line 90
800401f3

HELP.. Why can I not get this to work!!

Many thanks in advance
Kindest regards
Sean McPoland
 
S

Sean McPoland

Hi all

FIXED - and now able to generate charts

Lots of documentation but little that is right is out
there.

the CreateObject should be OWC11.ChartSpace

regards
Sean
 

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