Set WebSchedule = Server.CreateObject("... ")

C

ConnerS

I am trying to run a free trial of a web calendar, and can not get past line 13.
I get a Server.CreateObject Failed message
Any idea on what to do now?
Frontpage 2002 and Access 2000
I had to save the download to my desktop, unzip it and then import into Frontpage.
 
T

Thomas A. Rowe

The error indicates that a DLL needs to be installed on the server, many host will not install
custom components on a shared hosting account, suggest you talk to your host before continuing,
because if they will not install it, the application is not going to work.

On line 13 what object is trying to be created?

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
C

ConnerS

The code is:
'Creates the WebSchedule Component
Set WebSchedule = Server.CreateObject("VASPWS.ASPWebSchedule")

Are there separate .dll for every application? I have looked at the code for several other calendar scripts and they don't have server.createobject("") just createobject("ADODB.Connection")
 
K

Kevin Spencer

When you modify ASP code, you're programming. I would suggest you learn ASP.
My web site (http://www.takempis.com) has some beginning level tutorials.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
C

chris leeds

check out www.8pixel.net there's a decent and free calendar there.
HTH

also, if you've got MacAfee antivirus running you will get problems running
scripts on your local server (just found that out the hard way)
 
T

Thomas A. Rowe

This specific application requires that the "VASPWS.ASPWebSchedule" 3rd Party ASP component (DLL)
must be installed on both the server that you are testing on and the server that will be hosting the
live site.

The ADODB is automatic installed as part of Windows.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================


ConnerS said:
The code is:
'Creates the WebSchedule Component
Set WebSchedule = Server.CreateObject("VASPWS.ASPWebSchedule")

Are there separate .dll for every application? I have looked at the code for several other
calendar scripts and they don't have server.createobject("") just createobject("ADODB.Connection")
 
K

Kevin Spencer

You're quite welcome. In addition, you can find the same type of help with
ASP that you find here for FrontPage, at the Microsoft ASP support
newsgroup: microsoft.public.inetserver.asp.general.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
Top