Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ElvisIncognito

    Do While A = B AND J = K ???

    Can I do this? If not, is there a workaround method? (Sorry if this is a stupid newbie question - I did a search but couldn't find anything.)
  2. ElvisIncognito

    ErrMsg "Either BOF or EOF is True"

    That was it!!! You nailed it - it should've been strProdver. (I feel like such a moron!) Thanks, JuanitaC! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You! Thank You...
  3. ElvisIncognito

    ErrMsg "Either BOF or EOF is True"

    Thanks for the response, Esoteric! That doesn't make a lot of sense to me, since the other set of code (using a different query and recordset but otherwise identical) works properly, but I tried it using: if not rsTCList.EOF then do while not rsTClist.EOF Response.Write...
  4. ElvisIncognito

    ErrMsg "Either BOF or EOF is True"

    Below are two virtually identical sets of code. Both queries work properly and return the expected recordsets when using Enterprise Manager, but while the first set (lines currently commented out) return the records in my ASP page, the second set returns the following error message: Error...
  5. ElvisIncognito

    ADODB.Command error using Stored Proc

    I have now tried all three methods described on Microsoft's HOWTO page- http://support.microsoft.com/default.aspx?scid=kb;EN-US;q164485 My two most recent attempts are: 'Set cn = Server.CreateObject("ADODB.Connection") 'Set rsPlatforms =...
  6. ElvisIncognito

    ADODB.Command error using Stored Proc

    I'm trying to call a stored procedure: CREATE PROCEDURE usp_osArray @Prodver numeric(9) AS SELECT Short, OS FROM platforms WHERE ProdVer= @ProdVer ORDER BY OSID DESC using the following code: Set cmdPassProdVer = Server.CreateObject("ADODB.Command") cmdPassProdVer.CommandType =...

Part and Inventory Search

Back
Top