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 wOOdy-Soft 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 dle46163

  1. dle46163

    Epoch time compare

    Thanks, for the help... I swear I tried that before and it didn't work - now it does! That must mean I messed something up before. Anyway, ragarding purple stars and MVP's...it may sound stupid but I don't even know what that stuff is. If you look over the threads you'll see I always write back...
  2. dle46163

    Epoch time compare

    Hi All, This has to be simple and I'm just missing something...I need to get the epoch time for my PC clock. I've been messing with this code: nd = new Date(); ep = nd.getTime(); document.write(ep); This works fine, however, I need the current epoch time excluding the seconds and...
  3. dle46163

    Checking for existance of an image

    Very nice, thank you!
  4. dle46163

    Checking for existance of an image

    Hi! I'm messing with the following code: function check(){ var connect_img=new Image(); connect_img.onload=good_connect; connect_img.onerror=bad_connect; connect_img.src="http://url/test.gif" } checkconnect=setInterval('check()',10000); For the lines...
  5. dle46163

    SAXException w/ IE in kiosk mode

    Hi All, I've got a java applet that parses XML.. Works just fine embeded in IE while in normal operation. However, when running in kiosk mode I get an error: SAXException. Thought it might be some type of rights problem but I've adjusted just about everything I can think of - even put the url...
  6. dle46163

    Strpos

    Thanks jpadie, works like a charm! -dle
  7. dle46163

    Strpos

    Hey all, I've got a string like this: $play_days="0123456"; I need to search for individual numbers in the string. If the number is not found, I simply echo a statement. Everything is fine except when the number found resides in the zero position in the string. I've tried the following...
  8. dle46163

    Variable problem

    Perfect, thank you!!
  9. dle46163

    Variable problem

    Ok, I think this will be an easy one... I'm piecing together a variable like this: cb=ikey+"_cb"; This variable ends up being the name of some checkboxes in a form. I want to place the variable in the following alert statement but it won't work! alert(schedule.cb.length); If I type...
  10. dle46163

    Which OS for IIS7?

    Hi All, I'm a bit confused about new OS's which run IIS7. I'm currently running Windows 2003 Server w/ IIS6. The version of 2003 is specifically the Web Edition. I want to build an IIS7 box but don't know if I need Vista or Longhorn and if there are specific web editions of each of those OS's...
  11. dle46163

    Parsing XML - Grab enclosures

    Disregard... I found a much better open source solution which includes everything!
  12. dle46163

    Parsing XML - Grab enclosures

    The enclosure falls between the <ITEM> tags.. Would look like this: <enclosure url="http://some_url/some_mp3.mp3" length="5752829" type="audio/mpeg" />
  13. dle46163

    Parsing XML - Grab enclosures

    Hi, Not sure anyone wants to take a crack at this but I'm sure it's fairly easiy if you understand parsing much better than I! I have the following script to parse XML (podast feeds). There is no facility to grab an enclosure url. I tried modifying the scritp to do so but can't get it to work...
  14. dle46163

    WHILE loop

    The 10 was just to simplify things a bit.. It ends up being a dynamic variable. For some odd reason <=10 didn't work. When I changed it to !=10, it did... Not sure what's up with that but I suppose it serves the purpose.
  15. dle46163

    WHILE loop

    GOT IT! Just had to change syntax a bit.. Here's what worked: while($counter!=10 && $row = mysql_fetch_assoc($rresult))

Part and Inventory Search

Back
Top