Web Task not found
I have some simple code that runs a stored procedure from an access project form. It had been working for months but now I get an error. The error text is:
SQL WEB assistant: Webtask not found. verify the name of the task for posibble arrors.
This is my code:
Dim SQL As String
SQL = "exec lastEdit " & Me.JOB_ID & ", " & "'Meeting Type Primary'" & ", '" & Me.JOB_Type & "'"
Set cmd = New ADODB.Command
With cmd
.ActiveConnection = CurrentProject.Connection
.CommandText = SQL
.CommandType = adCmdText
.Execute
End With
Thanks,
Jesse
__________________
Thanks,
Jesse
|