Viewing 2 posts - 886 through 887 (of 887 total)
Hi, you can create a job with an ActiveX scripts task and then do the following:
Dim oObj
set oObj = CreateObject("dllName.ClassName")
oObj.FunctionName()
Set oObj = Nothing
dllName is the...
September 6, 2005 at 1:45 am
#587685
One thing you must also make sure of is that you clean up your recordset objects at the end of the page, ie "Set recordset = nothing"...
May 13, 2003 at 5:28 am
#456954