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 SkipVought 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: HollyVally
  • Order by date
  1. HollyVally

    MotherBoard keeps beeping during POST!

    Thanks for the beepcode link. According to the link the repeated long beep means Memory error. After checking the memstick, it was not the case. In the mean time I have reassembled the computer from scratch! I found lots of dust in the heatsink. While cleaning that it got my attention that...
  2. HollyVally

    MotherBoard keeps beeping during POST!

    I am using a Gigabyte RZ series motherboard 8VM533M-RZ VIA P4M266A/P4M533 chipset. I also use a PC2300 512MB DDR DIMM RAM. The processor used is P4 Celeron 2.6GHz. Although it was runnign 'sort of' OK, yesterday suddenly it died with a long(7sec.) beep then 5sec. mute and repeating until shut...
  3. HollyVally

    How to toggle between multiple <DIV>-tags?

    Although this is a perfect working reply of my question b. this still doesn't solve my question a. below! As I said: I need the following to acheive: a. clicking on one 'menu' item should open that menu and at the same time close the other menus b. if 'menu' is open than clicking on it...
  4. HollyVally

    How to toggle between multiple <DIV>-tags?

    I have the following code: <div id=menu1 onclick='showhide(list1)'>menu1</div> <div id=list1 style='display:none'>list1</div> <div id=menu2 onclick='showhide(list2)'>menu1</div> <div id=list2 style='display:none'>list1</div> <div id=menu3 onclick='showhide(list3)'>menu1</div> <div id=list3...
  5. HollyVally

    wrap text in html table!

    Thanks a lot Chris! Those are priceless![thumbsup2]
  6. HollyVally

    wrap text in html table!

    Hi Chris, Brilliant Idea! (using CSS) But I have a very little and limited idea regarding implementing it. All I know that I can define the table tags in my way in a CSS and include the file in the HTML header! I know this is NOT all about CSS -- what I don't know is how to get the quick...
  7. HollyVally

    wrap text in html table!

    Sorry... I meant first instead I said after in ... My Idea was that if <td width=&quot;100&quot;> is written than after 100 chars or pixels or points will be in the same line, and the rest would go to the next line in the same cell! ....Thanks
  8. HollyVally

    wrap text in html table!

    Hi Deecee, Thanks for the advice. I am actualy trying the way you have shown in your example, without any luck. My Idea was that if <td width=&quot;100&quot;> is written than after 100 chars or pixels or points will be in the same line, and the rest would go to the next line in the same cell...
  9. HollyVally

    wrap text in html table!

    Hi all, Sorry to ask a stupid question: How can I wrap the text in a table cell(<TD></TD>)?
  10. HollyVally

    How to set ROW space to 'zero'?

    HI tviman, Thanx for all. I am a NS fan too, that's why I have this problem! I started developing on NS and I completely overlooked the IE view at the begining! One of my friend chked on IE and reported the error. Since than I am trying to resolve it, but I simply don't know where the mistake...
  11. HollyVally

    How to set ROW space to 'zero'?

    Jere is the corrupted code: (it runs well in NN but not in IE) <HTML> <HEAD> <TITLE>Welcome to My Test</TITLE> <META http-equiv=&quot;Content-Type&quot; content=&quot;text/html&quot;> <STYLE type=&quot;text/css&quot;> <!-- .gamecell { font-size:10pt; font-family:verdana, arial, helvetica...
  12. HollyVally

    How to set ROW space to 'zero'?

    Hi all, I am trying to draw a table. But I can't seem to remove the space between the rows(<TR>'s) in that table: I could well do so for the cells(<TD>'s). Pls help me!
  13. HollyVally

    If Else statement?

    Hi Rob, You can use the onClick option in the button Like the following to invoke your .js file: <INPUT name=&quot;ZoomIn&quot; type=&quot;Button&quot; onClick=&quot;/scripts.js/zoom_in();&quot; value=&quot;Zoom in&quot;> <INPUT name=&quot;ZoomOut&quot; type=&quot;Button&quot...
  14. HollyVally

    If Else statement?

    Hi Rob, You can use the onClick option in the button Like the following to invoke your .js file: <INPUT name=&quot;ZoomIn&quot; type=&quot;reset&quot; onClick=&quot;/scripts.js/zoom_in();&quot; value=&quot;Zoom in&quot;> <INPUT name=&quot;ZoomOut&quot; type=&quot;reset&quot...
  15. HollyVally

    'getElementById' NOT same in IE &amp; NS?

    I have done that(enabled js in NS) too. I use NS 7.02 and IE 6.0
  16. HollyVally

    'getElementById' NOT same in IE &amp; NS?

    I have the following fnc. that runs fine in IE but does not do certain things(indicated with ~ on both sides) in NS: function setClickedCell(myForm, myCell) { var f = document.getElementById(myForm); var c = document.getElementById(myCell) ; var v = document.getElementById('chosenCell')...
  17. HollyVally

    'getElementById' NOT same in IE &amp; NS?

    Hi what is the equivalent of 'getElementById' in NS? how to get around the problem of showing the dissimilar display in these 2 ?
  18. HollyVally

    Javascript HTMLObjectElement?

    Any suggestion on the following: using 'obj = document.getElementByID(ID);' then can I change the obj.value or obj.name etc. inside the function to put effect in the calling document ?
  19. HollyVally

    Javascript HTMLObjectElement?

    chosenCell is a hidden input box where I kepp this info only. It is in the same form though.
  20. HollyVally

    Javascript HTMLObjectElement?

    In my .js I have a function like: function setClickedCell(myForm, cell) { var cellname = myForm.chosenCell.value; if ( cellname ) { myForm[cellname].style.backgroundColor = '#FEFA00'; } myForm.cell.style.backgroundColor = '#FF0000'; myForm.chosenCell.value = cell.value; // this is...

Part and Inventory Search

Back
Top