Wrox Programmer Forums
|
Access VBA Discuss using VBA for Access programming.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Access VBA section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 24th, 2004, 02:53 PM
Authorized User
 
Join Date: Jun 2003
Posts: 34
Thanks: 0
Thanked 0 Times in 0 Posts
Default 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





Similar Threads
Thread Thread Starter Forum Replies Last Post
Web Service not Found workib C# 1 December 4th, 2008 07:41 PM
How to add task in Scheduled Task programatically amitjoshipune C# 2 July 31st, 2008 05:42 AM
Sending Outlook Task thru Web Application gadhiav ASP.NET 1.0 and 1.1 Professional 9 March 5th, 2007 10:36 AM
Execute Task from ActiveX Script Task PorcupineRabbit SQL Server DTS 1 January 10th, 2006 12:37 PM
web service not found yoclee BOOK: Professional SQL Server Reporting Services ISBN: 0-7645-6878-7 0 July 5th, 2004 10:54 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.