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 bkrike 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: *

  • Users: jones54
  • Content: Threads
  • Order by date
  1. jones54

    enable / disable multiple select in a listbox

    Hi, I have a dropdown menu and a listbox on a web page. Depending on the value selected in the dropdown menu I would like to enable and disable multiple select in the listbox. Does anyone know if this is possible using JavaScript? I don't want to have to rebuild the page each time. Many Thanks
  2. jones54

    HTTP 405 Resource not found

    Hi, I have a JavaScript function: function returnNextPage(nextPage) { //alert(nextPage); //document.SearchUser.action = nextPage; document.SearchUser.action = "/AdminTools/unlockUserResearchAccount"; document.SearchUser.submit(); } //--> When I call this function on the submit of a...
  3. jones54

    XHTML and Microsoft Internet Explorer

    Hi, I have just started looking into XHTML recently and I am getting mixed messages from different web sites about Microsoft Internet Explorer's support for XHTML. Could anybody please point me in the direction of something definitive? Does IE display XHTML pages properly? - Any issues...
  4. jones54

    if statement with a logical OR

    Hi I want to include a simple logical OR expression in an if statement but I cannot find the correct syntax. I have tried pipe (i.e. |) amd -a but can't seem to get either to work. Here is what I have: if [test ! -f "$location/parse.txt" -a $sizeOfParse = "0"]; then I am using #!/bin/sh Could...
  5. jones54

    Microsoft Jet database engine NIGHTMARE!!

    Hi, I have been having intermittent problems with an MS Access 2000 front-end application linked to a SQL Server 2000 database recently. From the switchboard a user was sometimes getting "There was an error executing the previous command". When she closes the application and opens it again it...
  6. jones54

    Check if a file doesn't exist

    Hi, Could somebody please let me know if the following code is a valid way for checking if a file DOES NOT exist: if test ! -f "$location/parse.txt" ; then echo parse file doesn't exist load_data fi I am using the bourne shell. I have been...
  7. jones54

    Calling SQL Loader from Unix

    Hi, I have a Unix script, from which I call SQL Loader to load data into an Oracle database. I then want to run some more commands after this but only if the SQL Loader insert completed successfully. Is there any way I can tell from my Unix Script whether or not the SQL Loader insert completed...
  8. jones54

    diff command inconsistent

    Hi, I have 2 files: file 1 contains: x y z file 2 contains: x y z 1 2 3 I am using the diff command to compare the 2 files so that I can get the differences between the 2 files. File 2 will always have extra data appended to it so the difference will always be the last few lines. In the case...
  9. jones54

    Submitting a form

    Hi, I have a Javascript function which contains the following condition: else { document.forms["prices"].action = '/public/GenericPublicPage?page=careers'; document.forms["prices"].submit(); return true; } Based on some testing that I have been doing it seems like the each of the lines...
  10. jones54

    Javascript -- setting form action

    Hi, I am having trouble setting the form action in Javascript. I have tried it a few different ways but I am getting the error "Object doesn't support property or method: document.SearchUser.action = '/AdminTools/jsp/private/deleteClientSearch.jsp'; document.forms[0].action =...
  11. jones54

    AS400 query results in a text file ??

    Hi, I posted a question yeterday about query version control. I haven't come across any solution to this problem therefore we have decided to include the queries in an executable and pass them to AS400. We will version control this executable! Maybe someone can help me with this approach. Is...
  12. jones54

    AS400 Query Version Control with VSS

    Hi, Would be very grateful if anyone can help me with the following. Is it possible to transfer AS400 queries to Microsoft Visual Source Safe (VSS) for the purpose of version control? If this isn't possible can anyone recommend an alternative for version control for AS400 queries? Many Thanks!

Part and Inventory Search

Back
Top