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 strongm 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: melt7
  • Order by date
  1. melt7

    Accessing hard drive for no reason

    No McAfee...have had both Norton and AVG on this pc.
  2. melt7

    Accessing hard drive for no reason

    No, this constant accessing of the hd is causing my pc to run slower--not something acceptable to me. Anyway, after reading wylsyp's post, I downloaded "Process Viewer", and I tried killing things at random. It appears that killing MSGSRV32.exe worked. Now the question is, is...
  3. melt7

    Accessing hard drive for no reason

    This is appearing intermittently. The mouse pointer turns into the hourglass about every two seconds (hd light comes on), stays on the hourglass for a couple of seconds, then back to the pointer. I've closed out all unneccesary programs, with only Explorer and Sys Tray open. Any ideas why...
  4. melt7

    refresh the opener window from opened window

    Try this: <script> function changeOpener() { opener.location.href=&quot;whatever.htm&quot; } </script> <BODY onunload=&quot;changeOpener();&quot;>
  5. melt7

    Calling function with Onunload

    Just a question...Stewart, did you actually try putting the alert inside your function to make sure? Rick's script works fine for me. Maybe the problem is the function itself??
  6. melt7

    dynamic amount of text boxes

    heheh, shoot naj99@consultant.com
  7. melt7

    dynamic amount of text boxes

    If you want the textboxes added to the same page, change this line: document.write(''+ name+'<INPUT TYPE=&quot;text&quot; NAME=&quot;'+ name+'&quot;><BR>'); to this: textBoxes.innerHTML += '<input type=&quot;text&quot; name=&quot;' + name +'&quot; class=txtbx><BR>'
  8. melt7

    Pop-Up Window on Page-load?

    use: <BODY onload=&quot;openNewWindow();&quot;> to call the function... <HEAD> <SCRIPT LANGUAGE=JavaScript> function openNewWindow() { var newWindow=window.open(&quot;new.htm&quot;, &quot;newWin&quot;, &quot;width=350, height=350&quot;); } </SCRIPT> </HEAD>
  9. melt7

    dynamic amount of text boxes

    OK, mickywall, I see what you're talking about on onpt's version. Just a typo is all. for (count = 0; count = num; count++) should be (count = 0; count < num; count++) Further, I see a waste of code in my function. &quot;userEntry--;&quot; is not needed if you change the loop test condition...
  10. melt7

    dynamic amount of text boxes

    Since you asked, I messed with it a little more. This way will give you unique names (an issue with my first entry that onpt pointed out). And, this time I included the form as well. function makeBoxes(userEntry) { var i; userEntry--; for (i=0;i<=userEntry;i++) { var...
  11. melt7

    dynamic amount of text boxes

    It aint easy being green, heheh. Onpt, I'm giving you a star for showing me a better way. Unfortunately, I've not gotten to the innerHTML property in my studies yet. I'm getting there, though. Keep up the good work.
  12. melt7

    dynamic amount of text boxes

    Try using this function: function makeBoxes(userEntry)//passed from text box { var i; userEntry--; for (i=0;i<=userEntry;i++) { document.write('<INPUT TYPE=&quot;text&quot; NAME=userBoxes[i]>'); } }
  13. melt7

    people can't get out of my web site hitting the &quot;Back&quot; button

    Thanks. I actually stumbled across this trying to answer another post on this site. I'm still learning, but this site is certainly helping that along. It's much better than dry textbook questions.
  14. melt7

    Accents in Javascript

    Search on google for &quot;Latin-1 character set&quot;, lots of pages listed there.
  15. melt7

    people can't get out of my web site hitting the &quot;Back&quot; button

    Try this... function move() { window.location.replace(&quot;new URL&quot;); } That should remove the old index file from history. (Unless I've missed something...seems to work for me.)
  16. melt7

    Accents in Javascript

    Thanks for the star onpt.
  17. melt7

    Accents in Javascript

    New to JavaScript, so I'm not familiar with the way you're doing it. However, using an escape sequence including the hex #s, you can get the result you're looking for. Try this: window.alert(&quot;Aten\xE7\xE3o&quot;); Good luck.

Part and Inventory Search

Back
Top