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. slavdaddy

    EAccess Violation using COM object and ASP

    I never installed .Net, but I still had problems. Hey dcolgrove, do you work for authorize.net? If so, why don't you guys just remove the links to the com object form your site if it doesn't work and you aren't going to fix it? Or maybe release the cod efor it to the general public so we can...
  2. slavdaddy

    Why does inStr only work every once-in-a while?

    Nope, that wasn't even the case. Upon further examination, I found that I shouldn't code until the wee hours for several nights in a row. I did something even dumber than the -1 instead of 1 thing. It seems like vbScript interprets any non-zero number as true, like C. However, if you type in the...
  3. slavdaddy

    Why does inStr only work every once-in-a while?

    Thanks derren. I keep forgetting that -1 is true in vbScript. Man, I feel dumb. Why can't it all be like C [pipe]? Thanks again. -Corey
  4. slavdaddy

    Why does inStr only work every once-in-a while?

    Howdy all. I have this problem, or really a performance boost issue, that I want to solve, but I can't get inStr to work. I have a dynamic site engine that I wrote, and it works pretty well for the most part, but part of it allows for dynamic menu generation in several forms. Using images...
  5. slavdaddy

    EAccess Violation using COM object and ASP

    No, I never fixed it. I just found a way around the vendor-provided COM object (you ever notice how first party vendor solutions never seem to be bug free...). Sorry I couldn't help. I know it isn't much, but you could always program your own functionality and using it instead, because at least...
  6. slavdaddy

    EAccess Violation using COM object and ASP

    I am using Authorizenet's com object to try to create a conection to their credit card services. I tis giving me the following error: AuthNetSSLConnect.SSLPost error '80020009' EAccessViolation /client-db-interface/test-orderScript.asp, line 58 What I am wondering is if this is an ASP...
  7. slavdaddy

    Dealing with ASPError 80040e10

    Problem solved. I had to switch to using an autonumber primary key field instead of the text field I was orignally attempting to use. I don't know if this is an error due to the text nature of the beast or if it has to do with the primary keys. I do know that I like Access even less now. So...
  8. slavdaddy

    Dealing with ASPError 80040e10

    Okay, I have found the problem. It is my where clause. The whole thing works fine inside of Access, but going through ODBC makes life hell. Can someone please tell me why strQuery = "SELECT * FROM (CUSTOMER INNER JOIN ORDITEMS ON CUSTOMER.ORDERNO=ORDITEMS.ORDERNO) INNER JOIN ORDERS ON...
  9. slavdaddy

    Dealing with ASPError 80040e10

    Okay, hi everyone. I am trying to get this ODBC-Access thing working, but it seems to be really picky (or I may just be working in the dark). Anyway, the problem is that I am getting an error code telling me that I am not passing enough arguments to objConn.Execute, and that it expects one...
  10. slavdaddy

    Limiting Queries With < and >

    I have come across a DB where some genius decided to store numeric order number entries in a text field in an Access DB. I want to get all records with an order number higher than say 2500. just using >"002500" didn't work, and I was wondering if anyone could lend a hand. Thanks in...
  11. slavdaddy

    Works in IE but not in Netscape...

    Your only problem was invalid html. I cleaned it up an it works. Here you go: <html> <Head> <title>ff</title> <SCRIPT LANGUAGE=javascript> <!-- function show(){ if ( document.all) document.all(&quot;object1&quot;).style.visibility = &quot;visible&quot...
  12. slavdaddy

    Netscape Form Value Qorkarounds

    thanks!
  13. slavdaddy

    Netscape Form Value Qorkarounds

    How can I access the value of a select in Netscape 4.*? All I can get is a null value. Thanks, Corey

Part and Inventory Search

Back
Top