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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by chessbot

  1. chessbot

    Conditional Display of Text

    Is this Javascript or ASP? --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an...
  2. chessbot

    Dropbox and form values with php

    Something like this? <?php // log into database echo <<<END <html> <head> <script type="text/javascript"> <!-- var units = new Array(); END; $sql = "SELECT unit_id, manufacturer_id, model, toner_cost, prints_per_toner, coverage, fuser_cost, transfer_dev, drum_cost, etc_cost, web_link FROM...
  3. chessbot

    dymaically calculating dix box cordinates

    Something like this? function changeBox() { var w = screen.width; var x = 0; switch (w) { case 1024: x = 256; break; case 800: x = 200; break; default: x = 100; break; } var elem = document.getElementById("box"); elem.style.left = x; } --Chessbot "In that blessed...
  4. chessbot

    Dropbox and form values with php

    Ok... can you give me the layout of the database tables? --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after...
  5. chessbot

    calender style program, problem with for loop

    lol ... np. --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an Eighth -- --"...
  6. chessbot

    Site comments

    If you are really looking for picky -- In the first page, I did not immediately see that the titles ("Who We Are", "What We Do", etc.) were links. Not sure if you want to change it, or how, but you did ask. Very nice site though. --Chessbot "In that blessed region of Four Dimensions, shall...
  7. chessbot

    calender style program, problem with for loop

    How about this? var week = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"); function nextXWeekdays(start, x) { while (x>0) { start++; // increment current position if (start == week.length) // if over start = 0; // return to beginning...
  8. chessbot

    setting min-width for resizing browser

    Doesn't that give you the width of the entire monitor? --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after...
  9. chessbot

    Layer Position

    For non-IE: position: fixed; --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an...
  10. chessbot

    setting min-width for resizing browser

    Try screen.availWidth --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an Eighth...
  11. chessbot

    Use form input to create a URL

    OK, come back with any problems. --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then...
  12. chessbot

    Dropbox and form values with php

    Oh, so just change whatever info and display method you have to hold model info; keep the manufacturer drop down as is. Tell me if you need an example. --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...]...
  13. chessbot

    setting min-width for resizing browser

    alert("Too small!"); --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset, the gates of the Sixth Dimension shall fly open; after that a Seventh, and then an Eighth...
  14. chessbot

    setting min-width for resizing browser

    Something like this? function checkSize() { if (screen.innerWidth < 400) { resizeTo(400, screen.innerHeight); alert("To small!"); } } window.onresize = checkSize; --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not...
  15. chessbot

    script generated page does not recognize the hebrew charset

    Add this to the writeln: <style type="text/css"> <!-- body { direction: rtl; } --> </script> --Chessbot "In that blessed region of Four Dimensions, shall we linger on the threshold of the Fifth, and not enter therein? Ah, no! [...] Then, yielding to our intellectual onset...

Part and Inventory Search

Back
Top