Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

'ASP 0196 : 80040154' PLEASE HELP!

Status
Not open for further replies.

Zipster

Programmer
Nov 13, 2000
107
GB
Hi,

I'm am trying to use:

var Pwr = Server.CreateObject("powerpoint.application");

The error I get back is:

Server object error 'ASP 0196 : 80040154'

Cannot launch out of process component

/Irequire/logon/loggedin/printable/printableND.asp, line 150

Only InProc server components should be used. If you want to use LocalServer components, you must set the AspAllowOutOfProcComponents metabase setting. Please consult the help file for important considerations.


All I need to know is does this mean that the component is installed on the server but I have to change AspAllowOutOfProcComponents metabase setting, or that I have to install powerpoint on the server?

Thanks.
 
What that means is that you need to change the setting to allow an out of process component to launch.

Now, if you don't have powerpoint installed on the server, then you'll need to do that, too, but that's not what that particular error message is telling you.

out of process component (.exe file)
in process component (.dll file)

penny.gif
penny.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top