I have an asp page that was working fine with Office XP
OWC. After
upgrading to Office 2003, I received this error message:

Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/sapcssrpt/rt/functions.asp, line 3
Invalid ProgID. For additional information specific to
this message
please visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.

The first few lines of functions.asp are:

Function barChartImage(strTitle, strCategory, strValues,
aryData,
aryLabel, strColor, intWidth, intHight, strFormat,
strMax, strMin)
Set objChartSpace = Server.CreateObject("OWC.Chart")
Set objChart = objChartSpace.Charts.Add
Set c = objChartSpace.Constants

I tried re-register OWC11.DLL, but that did not help.

Any Suggestions?

Re: Server object error 'ASP 0177 : 800401f3' after Office 2003 Upgrade by David

David
Wed Dec 17 14:13:54 CST 2003

That looks like By-design (you may want to check with an Office Newsgroup).

I see OWC.Chart existing for my Office 2000 and Office XP installations, but
not on my Office 2003 machine. It looks like it's been removed, though
maybe its functionality may have been upgraded (though I don't know what the
name of that class would be).

This is now an Office question that will be better served on an Office
newsgroup. ASP is simply reporting that it failed to instantiate the ProgId
because it wasn't there.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Jay Griffin" <anonymous@discussions.microsoft.com> wrote in message
news:021101c3c4c6$e6bfe410$a101280a@phx.gbl...
I have an asp page that was working fine with Office XP
OWC. After
upgrading to Office 2003, I received this error message:

Server object error 'ASP 0177 : 800401f3'
Server.CreateObject Failed
/sapcssrpt/rt/functions.asp, line 3
Invalid ProgID. For additional information specific to
this message
please visit the Microsoft Online Support site located at:
http://www.microsoft.com/contentredirect.asp.

The first few lines of functions.asp are:

Function barChartImage(strTitle, strCategory, strValues,
aryData,
aryLabel, strColor, intWidth, intHight, strFormat,
strMax, strMin)
Set objChartSpace = Server.CreateObject("OWC.Chart")
Set objChart = objChartSpace.Charts.Add
Set c = objChartSpace.Constants

I tried re-register OWC11.DLL, but that did not help.

Any Suggestions?



Re: Server object error 'ASP 0177 : 800401f3' after Office 2003 Upgrade by JAy

JAy
Thu Dec 18 08:53:50 CST 2003

Thanks David - I will check with Office. I appreciate
the prompt response.