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

    WinXP Web Server

    Has anyone had any luck setting up a web server on WinXP Pro? I've tried Apache, but it dosn't seem to work, keep getting Error 500 Internal server error. Any suggestions? "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact...
  2. Bentley22

    Layers and links

    You can't click on a link that is under another layer. It would be like trying to draw on a piece of paper that is under a sheet of metal. It can't be done. Your going to have to design another layout if this is what you want, or reduce the size of the layer so it dosn't interfere with the...
  3. Bentley22

    Internal Bookmark Link Loses Page Title

    lol, I thought you meant setting a bookmark (favourite) in IE. Sorry. Hummza, I've noticed this before, but never really been concerned by it. Best guess is that the browser is intrepreting it like a link, but since it is the same page, but not actually reloading it, is displays the URL...
  4. Bentley22

    JS Window Close

    Fraid DeZiner's right, if its a parent window, nothing you can do about it. Incedentially, why would you want to close the index page anyway? If you don't want it hanging around, why not just have your new page load in the same browser? "The surest sign that intelligent life exists...
  5. Bentley22

    Applying style of SELECT

    add this to the select tag: style="border: Colour, width(px), solid;" "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin & Hobbes
  6. Bentley22

    Internal Bookmark Link Loses Page Title

    Can you post the code for creating the bookmark? "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin & Hobbes
  7. Bentley22

    How do you determine focus with an if statement?

    try using a name other than "select" even select1, select2 etc. I belive that "select" is a reserved term in IE DOM, but it won't throw an error, since you have the select element in your forms. "The surest sign that intelligent life exists elsewhere in the universe is...
  8. Bentley22

    My code is doing something strange...

    document.search.searchstring.value = document.search.elements[1].value+' '+document.search.elements[2].value+' '+document.search.elements[3].value switch it to: document.search.searchstring.value = document.search.elements[1].value' + 'document.search.elements[2].value' +...
  9. Bentley22

    Checkbox Validation

    Yes, it is possible, however, why not radio buttons? They would be the ideal solution. use the radioBox.checked = true/false to check your boxes "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin &...
  10. Bentley22

    JS Window Close

    Are you opening a new page(window) from the index page, then closing the index page? Please be clearer. If this is the case, you can, however IE will prompt the user to confirm the closure, since index is your parent window. "The surest sign that intelligent life exists elsewhere in the...
  11. Bentley22

    Determine logged-on user name

    Why don't you use cookies to set a value on the users comp, that dosn't expire, similar to Tek-Tips here? "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin & Hobbes
  12. Bentley22

    Cannot hide my list box

    If you post the relevent code (the layer, list box, and functions, etc.), we can have a look through it. It might just be a small bug in your coding. "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson...
  13. Bentley22

    Window Size & Location Tip

    thx for the tip! "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin & Hobbes
  14. Bentley22

    Right clik disable - how to do it?

    heh, this is looking like a slashdot article... "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin & Hobbes
  15. Bentley22

    Mutiple submit buttons in one form...

    You need to use a generic button, and tie javascript functions to each button. That way, (in the functions), only the data you want called/submitted is processed. "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill...
  16. Bentley22

    Netscape Javascript Error

    The following errors were reported: JavaScript Error: http://web2.murraystate.edu/csc12501fl01/brian.edwards/cis420/cost.cfm, line 117: syntax error. --> ..^ JavaScript Error: http://web2.murraystate.edu/csc12501fl01/brian.edwards/cis420/cost.cfm, line 90: STDIV is not defined...
  17. Bentley22

    Form submission with mailto

    If you don't want Outlook to handle it, you'll have to employ a script, such as FormMail from Matts Script Archive: http://worldwidemart.com/scripts/formmail.shtml Otherwise, the browser opens up it's default mail program to send the data. "The surest sign that intelligent life exists...
  18. Bentley22

    Is there a way to check if e-mail address exists?

    Ahh, I think I've found an example of what your talking about Eugene: http://www.hexillion.com/utilities/EmailDossier.vbs.asp Have a look "The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact us" Bill Watterson, Calvin & Hobbes
  19. Bentley22

    Is there a way to check if e-mail address exists?

    Do I detect a hint of sarcasm there bearsite4? This e-mail checker was grabbed from java-scripts.net. Checks to see that only valid characters have been submitted: <script language=&quot;JavaScript1.2&quot;> /* Advanced Email Check By Website Abstraction (http://www.wsabstract.com) and...
  20. Bentley22

    Search Engine Tips

    Looks like a useful page, however whats your criteria for establishing a search engine as major? I would think Yahoo and Dog Pile would rate, but I've never heard of Real Names. &quot;The surest sign that intelligent life exists elsewhere in the universe is that it has never tried to contact...

Part and Inventory Search

Back
Top