Results 1 to 2 of 2

Thread: Can this be done using SQL 7?

  1. #1
    Gary McGowan Guest

    Can this be done using SQL 7?

    I am using SQL 7 with Access 2000. Can someone please tell me how to pass the value from a bound combo box on an Access Project form to the following stored procedure:

    Alter PROCEDURE usp_Find_Order
    @VendorID varchar(255)
    AS
    SELECT * FROM ViewItems WHERE
    VendorID= @VendorID

    This procedure is the Row Source for the combo box.

    Gary


  2. #2
    John Wilson Guest

    Can this be done using SQL 7? (reply)


    Nooooooooooo!!!!!!!!

    ------------
    Gary McGowan at 9/3/99 1:24:07 PM

    I am using SQL 7 with Access 2000. Can someone please tell me how to pass the value from a bound combo box on an Access Project form to the following stored procedure:

    Alter PROCEDURE usp_Find_Order
    @VendorID varchar(255)
    AS
    SELECT * FROM ViewItems WHERE
    VendorID= @VendorID

    This procedure is the Row Source for the combo box.

    Gary


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •