Jump to content

jesh

Members
  • Posts

    2,293
  • Joined

  • Last visited

About jesh

  • Birthday 01/01/672

Previous Fields

  • Languages
    ASP.NET (C#), (T-)SQL, javascript, HTML, CSS

Contact Methods

  • Website URL
    http://
  • ICQ
    0

Profile Information

  • Location
    Portland, Oregon

jesh's Achievements

Devoted Member

Devoted Member (5/7)

0

Reputation

  1. fabs

    hai, jesh thanks for your help

  2. jesh

    socket coonection

    Now that's a great idea.
  3. jesh

    socket coonection

    At least he's out of 2005 and into 2006. Maybe he'll catch up some day.
  4. jesh

    CSS sounds

    I wonder if he's just going though the list in order, one topic at a time, and answering every question that never got sufficiently answered.This one is #1341: http://w3schools.invisionzone.com/index.php?showtopic=1341The next one he may look at is 1342, then 1343. Maybe we can beat him to the punch.
  5. jesh

    d/l a .pdf?

    Haha! It took me a few seconds to understand your comment until I finally noticed that the original posting date was "Apr 13 2006".
  6. jesh

    Anagram Solver

    You might try NetSpell. It uses the OpenOffice dictionaries.http://www.codeproject.com/KB/string/netspell.aspx
  7. Without reading this thread in depth, I believe there's a compatibility problem here: a img:hover {border-width:0;color:#000000;background-color:#FFFFFF;} I think this would work better across browsers (read IE 6) if it were: a:hover img {border-width:0;color:#000000;background-color:#FFFFFF;}
  8. jesh

    Domain Name

    Without really playing around with this, it looks like this is where the width is being set:this.divObj.style.width=distancepercent * this.contentwidth +"px"And, because of the name of the variable, and the fact that is it multiplied by the width rather than added, tells me that this script is shrinking/expanding the width by a percentage rather than in absolute pixel increments. This might make my first suggestion a bit difficult. Maybe you could set the div's position to absolute and have the right site anchored rather than the left. Check out this example: <html><body><style>#test { background-color: red; width: 400px; height: 400px; position: absolute; right: 0px; }</style><script type="text/javascript">function shrink(){ var div = document.getElementById("test"); div.style.width = (div.offsetWidth * .5) + "px";}</script><button onclick="shrink()">Shrink</button><div id="test">Hello</div></body></html>
  9. jesh

    Domain Name

    Well, changing the width makes the div close from the right since all elements are anchored at the top-left corner. If you want the right side to stay put, you'll have to correspond the changing width with a new left position. For example, if each iteration through the animation changes the width by 2 pixels, you'll have to also move the div 2 pixels to the right to keep the right edge where it is and have the left edge move to the right.
  10. I know of no such list (Google may help) but when I need to know a code, I typically do this (using the example code above):function findKey(evt){ var evt = (evt) ? evt : ((window.event) ? event : null); if (evt.type == 'keydown') {var charCode = (evt.charCode) ? evt.charCode : evt.keyCode;alert(charCode); // this tells you the code for each key pressed.}
  11. jesh

    Crystal Report

    Sorry to butt in here. I've never used Crystal Reports. Do you have to use the Designer to set up your report? Can you programmatically do it in the code instead? Or is the only way to set it up to use the Designer view where it can go in and look at the database structure? If you can programmatically do it, you should be able to specify the columns that your proc is returning even if they come from temporary tables.
  12. jesh

    Using Random Strings

    I was referring to multiple runs through the randomizing sequence. If the first time you run it it outputs "cat ate dog hat in the", you may want to add some logic so that the next time the sequence runs "cat ate dog hat in the" isn't output again. I know it's (pseudo-)random and the probability that the same sequence will immediately repeat itself is very low, but some applications may require that no recent sequences repeat themselves.I'm a big fan of ArrayLists though.
  13. Hmm, I'm running it on v2.0.0.3. I'm using Firebug v1.04 found here: https://addons.mozilla.org/en-US/firefox/addon/1843
×
×
  • Create New...