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

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

    error checking multiple select boxes

    I have a dynamically created page that creates a bunch of select boxes (dropdowns) all named the same thing. When the user submits the page I need to validate the page and make sure that none of the select boxes still have the default value (99999). The problem is I am not sure how to cycle...
  2. trojan800

    Error in Code?

    I have a dropdown box that when the onChange event is triggered it goes into the following javascript function: var e_select = document.getElementById("hotel"); var hotel = new String(e_select.options[e_select.selectedIndex].value); var strURL = new String ("border2.asp?page_id=51&h=" +...
  3. trojan800

    Real error messages vs. friendly errors in FF 1.5

    Does anyone know how to show real error messages vs. friendly error messages in firefox in much the same way they do it in IE. I have browsed the about:config but have failed to find anything that looks like it might help. Thanks in advance for any and all help. -Rory
  4. trojan800

    Align text within a text box?

    How do you align the text in a text box so that when the user enters text it aligns with the right side of the box rather then the left? Thanks for any and all help in advance. -Rory
  5. trojan800

    Convert Hexadecimals??

    I have completely forgotten how to convert hexadecimals and while this question isn't directly related to DNS (it is a MAC address), I figured someone here might still be able to help me. It relates to an issue I am having with my VMWare machine. So on to my question... ethernet[n].address =...
  6. trojan800

    Help with hexadecimals...please!

    I have completely forgotten how to convert hexadecimals and while this question isn't directly related to TCP/IP (it is a MAC address), I figured someone here might still be able to help me. It relates to an issue I am having with my VMWare machine. So on to my question... ethernet[n].address =...
  7. trojan800

    Hostname lookup hack?

    I recently installed frontpage 2002 extensions on my WIN 2K server in order to take advantage of web usage reports. Things appear to work fine except that in the web logs it is reporting IP addresses rather then hostnames. So I was wondering if anyone knows of any sort of hack that would report...
  8. trojan800

    Hostname lookup w/ usage reports

    I recently installed frontpage 2002 extensions on my WIN 2K server in order to take advantage of the usage reports. Things appear to work fine except that in the web logs it is reporting IP addresses rather then the hostnames. Is this normal and if not is there a way to report the hostname...
  9. trojan800

    Problem building jar file with ant

    First off, sorry if this is in the wrong forum as I think this may be more a problem with ant and not java, but I am usure of where else to look for help. I am building an app with Jbuilder 2005 and everything works when I choose to run the program. The problem is when I try to build a jar...
  10. trojan800

    Change button text of Msgbox?

    I was wondering if it is possible to change the text of buttons on message boxes. I currently use the constant vbYesNo which works great but to increase usability it would help if I could replace 'Yes' with something like 'View Data' and 'No' with 'Add More'. Does that make sense? I don't want...
  11. trojan800

    Computer freezes after memory upgrade!?!

    I have a sony vaio notebook that consistently freezes/locks up. It boots up fine everytime and seems to work wonderfully until for no apparent reason the system freezes and I have to do a hard shut down. This appears to happen at random, when I am a running various different programs or if I...
  12. trojan800

    Using percentage doesn't seem to work in Netscape

    I have some dropdown menus created with fireworks. I use percentages for the horizontal or X value, as seen in the following code: onMouseOver="window.FW_showMenu(window.fw_menu_1,'40%',100);" onMouseOver="window.FW_showMenu(window.fw_menu_2,'50%',100);" etc...
  13. trojan800

    Is there a 'right' function in javascript

    Can I manipulate a string in javascript with any similar functions to say right, left, mid etc. Particularly how would I isolate a word in a long string if I knew where the word started but not where it ended and wanted to search forward for the next space. Any help is greatly appreciated.
  14. trojan800

    Passing a value in an alert box

    I am trying to pass a value (lastAllowed) to the user through an alert box. Everything is working as it should be except that after the message and before the value (which is showing up correctly), the word 'undefined' is showing up everytime. Can anyone see something wrong in the following code...
  15. trojan800

    Cannot update. Database or object is read-only. ??

    I am creating an asp page that updates a users personal data in an access database. I can query the database with no problems. But when I try to update I get the following error: Error Type: Microsoft JET Database Engine (0x80040E09) Cannot update. Database or object is read-only. My code to...
  16. trojan800

    Limit number of words in input

    I have a form that lets a user update some fields in my database. My problem is I need to limit their entry in one of the fields to NO more than 100 words. How would I go about checking for this? Is there some function to find the 100th space in a string or something of the sort? Any ideas are...
  17. trojan800

    how to send a variable using window.open

    I am trying to pass a variable with window.open using the following code... and I am getting nothing. Granted my knowledge with js is limited, so it may or may not be a: something stupid or b: not possible. Any help or ideas are greatly appreciated. Thanks - Rory function onBtnClientCoy() {...
  18. trojan800

    Select All Checkboxes?

    Ok here is my problem. I have an array of checkboxes created dynamically from the database. I have a button that when clicked I want it to select all the checkboxes on the form. I realize this should be a fairly easy and seems to be quite common as I have already used the search tab to do some...
  19. trojan800

    Darn that Netscape! It's always som

    Darn that Netscape! It's always something. However I have a feeling this may be a very quick and easy answer for you experts and gurus. Any and all answers/suggestions are greatly appreciated. Ok, so I have two functions that I want to perform client-side when the user clicks submit (onsubmit)...
  20. trojan800

    Validating checkboxes...won't work in Netscape!

    OK I have list/array of checkboxes created dynamically from a database (therefor all have the same name w/ different values) the checkboxes are created server-side vbscript like so: Do Until objRS.EOF Response.Write &quot;<TD><input type=&quot; & chr(34)& &quot;checkbox&quot; & chr(34) &...

Part and Inventory Search

Back
Top