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 TouchToneTommy 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. codehead

    ThinkPad i1465

    Hello Everyone: I've tried a bunch of distros on my ThinkPad i1465, but all of my installation attempts have failed. Debian came back with a weird error message and Fedora and Ubuntu both hang. Could it be that my hard drive has a partition on it (left over from XP), that I couldn't get rid...
  2. codehead

    Making a Submit Button dynamically disappear

    Well, it's really weird! I took your code, put it in a new page, then added my code in, line-by-line and it runs O.K. now!!!! I added all of my code back in, so I don't know what was causing the the failure??? Really strange....
  3. codehead

    Making a Submit Button dynamically disappear

    Hi Kaht, You are correct. Your code works correctly. It's something in my code that's causing the JavaScript to fail. It's not the code snippet above, so I'm ripping my code down, piece by piece, to figure out what's causing the problem. Thanks.
  4. codehead

    Making a Submit Button dynamically disappear

    Hi Kaht, I didn't just "plunk" it into my program. I changed the references, but I'm still getting the error message. Could the problem be that I'm generating multiple checkboxes from my database: <tr> <%do while not tl_org.EOF%> <td><input type="checkbox" name="TL_ORG"...
  5. codehead

    Making a Submit Button dynamically disappear

    Hi Kaht, I'm getting a JavaScript error: Line: 87 Char: 1 Error: Obj expected Thanks.
  6. codehead

    Making a Submit Button appear dynamically

    Could it not be working because I'm using multiple checkboxes (under the same checkbox name) that are being populated from a database? <table> <tr> <% do while not tl_org.EOF %> <td><input type="checkbox" name="TL_ORG" value="<% = tl_org("ORGANIZATION") %>"...
  7. codehead

    Making a Submit Button dynamically disappear

    Hello All: I want to make a Submit Button disappear when a check box is checked on a form. Does anyone know how to do this or can anyone point me to a similar example that I could adapt to my usage? Thanks!
  8. codehead

    Making a Submit Button appear dynamically

    Hi DNG, There seems to be a logic flaw....when I check the checkbox, I get the "else" message, instead of the Submit Button being disabled. Thanks!
  9. codehead

    Making a Submit Button appear dynamically

    Hello All: I want to make a Submit Button appear when a check box is checked on a form. Does anyone know how to do this or can anyone point me to a similar example that I could adapt to my usage? Thanks!
  10. codehead

    Syntax error in an UPDATE statement

    It's working now. I'm using the hidden input field and a plain request on the following page: updateStmt = conn.ExecuteSQL("UPDATE REQ_REQUIREMENTS SET ASSIGNED_POC = '"&request("assigned_poc")&"' WHERE pkey = "&request("pkey_value")) Thanks!
  11. codehead

    Syntax error in an UPDATE statement

    Well, this is taking the "pkey" value passed from a prior page and pulling up the name of the current page: set RequestName = conn.CreateDynaSet(_ "Select REQUEST_NAME from REQ_REQUIREMENTS where pkey= '"&Request.QueryString("pkey")&"'", Cint(0)) Then, I'm trying to pass the same "pkey"...
  12. codehead

    Syntax error in an UPDATE statement

    Not yet. I'm trying to figure out why my "pkey" value isn't transfering from one page to the next. Thanks.
  13. codehead

    Syntax error in an UPDATE statement

    UPDATE REQ_REQUIREMENTS SET ASSIGNED_POC = 'POC NAME' WHERE pkey = Hmmm....looks like I'm getting a NULL for a pkey.....
  14. codehead

    Syntax error in an UPDATE statement

    I have to use the integer one: updateStmt = conn.ExecuteSQL("UPDATE REQ_REQUIREMENTS SET ASSIGNED_POC = '"&request("assigned_poc")&"' WHERE pkey = "&request("pkey")) because I'm using an auto-increment trigger. What is the syntax for the response.write on my sql query? Thanks.
  15. codehead

    Syntax error in an UPDATE statement

    DNG, I get a "500" error. (ORA-00921:_unexpected_end_of_SQL_command)
  16. codehead

    Syntax error in an UPDATE statement

    Hi Creto, I'm requesting my variable from a form. What I'm trying to figure out is how to pass "pkey" as an integer (I think it's passing through a character). Or, maybe it's just easier to change my data field to a VARCHAR2.
  17. codehead

    Syntax error in an UPDATE statement

    Hi DNG, Don't you need a " to match the " at the ("UPDATE ?
  18. codehead

    Syntax error in an UPDATE statement

    Hello All: I can't seem to get the syntax correct on an UPDATE statement. The "pkey" value is an integer and the statement runs o.k. with an integer value, but not with my "request" statement nested in it. updateStmt = conn.ExecuteSQL("UPDATE REQ_REQUIREMENTS SET ASSIGNED_POC =...
  19. codehead

    conn.CreateDynaSet

    Here is a good link for anyone else trying to use this functionality: http://www.orafaq.com/faqoo4o.htm#DDL
  20. codehead

    conn.CreateDynaSet

    I finally figured it out. It was just a syntax error. And your conn.ExecuteSQL does work (but no "set" statement is needed nor is the "Cint(0)"). Thanks again, DNG!

Part and Inventory Search

Back
Top