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 SkipVought 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: DanLW
  • Order by date
  1. DanLW

    runtime error 713 application-defined or object-defined error

    I'm getting a similar error message: Failed to load control 'PRIX' from PRIX.ocx. Your version of PRIX.ocx may be outdated. Make sure you are using the version of the control that was provided with your application. Error number is: 372 I have checked the registry HKEY_CLASSES_ROOT and an entry...
  2. DanLW

    Connection failure to MSSQL on remote machine, using mssql_connect()

    Problem solved - a work around at least. Not able to connect to an instance of SQL Server by using an anonymous login. Several days of RTFM and Google searches - happy at last! Solution at http://support.microsoft.com/default.aspx?scid=kb;en-us;839569
  3. DanLW

    Connection failure to MSSQL on remote machine, using mssql_connect()

    I am failing to connect to a MSSQL database on a remote machine using mssql_connect(). $db = mssql_connect (‘<remote db server name>’, ‘<username>’, ‘<password>’); if (!$db) { echo “connection failure”; } else { echo “connection successful”; mssql_close(); } // returns “connection...
  4. DanLW

    'Skip' to next tabindex - forms/checkboxes

    The following code works a treat! <script language="JavaScript" type="text/javascript"> document.onkeypress = function(event) { // Triggered by the key stroke 'CTRL+g', which is keyCode 7. // Sets focus in the field of the next tabindex to the field currently having focus if (!event &&...
  5. DanLW

    'Skip' to next tabindex - forms/checkboxes

    Dan Thanks for the help. Using 'getAttribute' to find the tabindex seems the way to go. As far as speed goes, the form is used for data entry on an intranet. Users find it much easier to use the keyboard only, to enter data. It slows them down to take their hands off the keyboard and navigate...
  6. DanLW

    'Skip' to next tabindex - forms/checkboxes

    Hello Is it possible to skip to the next field in the tabindex on a form, bypassing all of the options in a checkbox list? To save the user having to tab unnecessarily through checkbox fields, when none are to be checked, I'd like to give the user a keyboard option to skip to the next field...
  7. DanLW

    PHP-MYSQL question

    Not sure of the exact syntax. Along the lines of: Connect to database... Extract current value of the 'notes' field $sql = "SELECT notes FROM logins WHERE id='$id'"; $query_result = // result from query append query result to $notes $notes = $query_result . $notes $notes should now read...

Part and Inventory Search

Back
Top