Gentlemen:
Am trying to use VBScript inside an ActiveX Task within a DTS package as a part of SQL Server 2000 to run the Desktop ActiveX API Application... my OS is Win 2K Server..
The script seems to run OK but I can never get the entitled status to come back as a 1... always shows 0... have checked my account status and it shows enabled for ActiveX development..
I have copied the code below:
Function Main()
dim esignal
set esignal = CreateObject("IESignal.Hooks")
esignal.SetApplication("**myloginid**")
msgbox esignal.IsEntitled
Main = DTSTaskExecResult_Success
End Function
When the script runs the eSignal Data Manager fires off so I am getting part way there... have read as many threads as I can find but can't find any that apply...
Appreciate any help you could give me...
Thanks... Steve
Am trying to use VBScript inside an ActiveX Task within a DTS package as a part of SQL Server 2000 to run the Desktop ActiveX API Application... my OS is Win 2K Server..
The script seems to run OK but I can never get the entitled status to come back as a 1... always shows 0... have checked my account status and it shows enabled for ActiveX development..
I have copied the code below:
Function Main()
dim esignal
set esignal = CreateObject("IESignal.Hooks")
esignal.SetApplication("**myloginid**")
msgbox esignal.IsEntitled
Main = DTSTaskExecResult_Success
End Function
When the script runs the eSignal Data Manager fires off so I am getting part way there... have read as many threads as I can find but can't find any that apply...
Appreciate any help you could give me...
Thanks... Steve
Comment