Ask a Question related to ASP Components, Design and Development.
-
David Di Donato #1
Server.CreateObject("Access.Application")
hi
i have a big problem. i have an asp file with the following source code....
******
Set r_ = Server.CreateObject ("Access.Application.10")
s1 = "DoAnything()"
with r_
.visible = false
.OpenCurrentDatabase "D:\SP5\Data\SPIS_LUPK_Vers.mdb"
sApp = .Eval(s1)
.CloseCurrentDataBase
.Quit acQuitSaveNone
End With
******
my problem is, that the createobject on my iis 15sec. goes....that is not
normally, or ????
what is the problem ? IIS settings ? DComCnfg ?? ASP Problem ??? Wrong
Settings ?
please help me....
thanks
david
David Di Donato Guest
-
Server.CreateObject("MSWC.Tools") fails in Windows 2003 server?
hello all, I hope you all are fine and doing well. I'm finding this error when i do Server.CreateObject("MSWC.Tools") in ASP using interdev. I... -
"Server.CreateObject failed" intermittently
Dear all, I have the same problem as Ed who post his problem in May. Afterward, a kind guy suggest his to call local rather than thru mts. In... -
server.createObject("wscript.shell") ... wShell.run ... stopped working...
I used to be able to run the following ASP code on our corp machine (W2K Server Edition and IIS-5) and successfully send a net-msg to anyone on our... -
server.createobject("wscript.shell")
How about: set wshell = server.createobject("wscript.shell") wshell.run "c:\file.bat " & x set wshell = nothing And then in your batch, use... -
Server.CreateObject("ADODB.Stream")
Does anyone know an alternative to this? I am using a ChiliSoft server and this isn't supported. TIA, Andrew * * * Sent via DevBuilder... -
Anthony Jones #2
Re: Server.CreateObject("Access.Application")
"David Di Donato" <david.didonato@webdev.ch> wrote in message
news:e40PpyqAHHA.4680@TK2MSFTNGP04.phx.gbl...code....> hi
>
> i have a big problem. i have an asp file with the following sourceAccess will be expecting to load into a full user environment. However ASP>
> ******
> Set r_ = Server.CreateObject ("Access.Application.10")
>
> s1 = "DoAnything()"
>
> with r_
> .visible = false
> .OpenCurrentDatabase "D:\SP5\Data\SPIS_LUPK_Vers.mdb"
> sApp = .Eval(s1)
> .CloseCurrentDataBase
> .Quit acQuitSaveNone
>
> End With
>
> ******
>
> my problem is, that the createobject on my iis 15sec. goes....that is not
> normally, or ????
>
> what is the problem ? IIS settings ? DComCnfg ?? ASP Problem ??? Wrong
> Settings ?
>
> please help me....
>
barely loads any user context at all (it is after in a service process).
It's likely that Access has more work to do that it would normally in an
interactive session.
Can you not do what you need using ADO?
> thanks
> david
>
>
Anthony Jones Guest



Reply With Quote

