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 Ineedjava

  1. Ineedjava

    How do I turn-off ActiveX warning messages?

    I've disabled ActiveX controls (signed and unsigned) because it has been an "infection route" for my browser to be highjacked. Now when I visit a page with an ActiveX control, I get a standard warning message that the page may not display correctly. How do I stop the warning message from...
  2. Ineedjava

    CPU running at 100% after 10 mins

    Hi jsause, >>...have Windows XP Pro then you also have ICF which can block incoming and outgoing ports.<< Are you sure about this? I was under the impression that the weakness in the XP Pro firewall was that it does not block outgoing ports.
  3. Ineedjava

    Memory Requirement for XP Pro

    I am considering buying a PC with a 2.6ghz processor and 512MB DDR RAM. For the first time in my fun career, I will be installing XP Pro on the PC and using the machine as a file/print server and broadband internet gateway for 6 other locally attached PCs. If the 6 local PCs all have logged...
  4. Ineedjava

    Proper coding of Pop-up window

    The code below from the Bestbuy website is somewhat confusing to me. In pseudo code it is saying &quot;if newWindow exists and newWindow is not closed, then focus on newWindow, then assign a url to newWindow&quot; Well, if newWindow exists then why test to see if it is closed? ---- Code...
  5. Ineedjava

    HTML or hex code for a half space?

    If & nbsp places a space on a web page, is there a code for placing a half-space on a web page?
  6. Ineedjava

    language = javascript

    If I use the code: <Script language=javascript> then what version of javascript does the browser default to? Should I assume that all versions (1.0 thru 1.3) of javascript are included in the latest IE or Netscape browser?
  7. Ineedjava

    New window name and focus

    I have a question concerning this javascript code that is used to create a pop-up window to display photos: newWind=window.open(&quot;&quot;,&quot;winnam&quot;); output=&quot;<HTML><BODY> blah blah blah </BODY></HTML>&quot; newWind.document.write(output); newWind.document.close()...
  8. Ineedjava

    Testing a variable's value

    Hi, In Javascript, I am testing the value entered into a donation amount box on a form. I want to make sure that the user enters a donation amount in the box greater than 1. So I am using this if statement: &quot;If ( amountbox > 1 ) ...&quot; The problem is if a user enters...
  9. Ineedjava

    How do I override a CSS setting?

    My CSS entries are listed in a single external file named styles.css In that file, A:Link is given a color, font-size, etc. In my HTML document, there is a special situation where I need to override the font-size assigned to a link. I tried placing a <font size=&quot;-2&quot; > command in...
  10. Ineedjava

    Closing open window

    I've successfully created a pop-up window (using window.open command) in which I display a jpeg image. I've had no problem automatically closing the window (named newWind) using a javascript command like &quot;newWind.close()&quot; which is executed upon an onUnload or onClick. Now, rather...
  11. Ineedjava

    Need Examples of 'Natural Webpages'

    Well, I just read thru more message here and I saw the link to the EagleRockflash.html. Here's what I would do. Play up the word &quot;view&quot; in their slogan. Instead of the huge leafy background, create a just a few 3&quot; x 2&quot; window panes (like in your house) with a leafy view...
  12. Ineedjava

    Need Examples of 'Natural Webpages'

    Your post mentioned: &quot;also, the logo is big, and black, w/ a white eagle outline kind of drifting across...someone help me make this happen without it turning into a disaster... &quot; I would integrate the logo only as a somewhat faint watermark image on the homepage. That way, da colors...
  13. Ineedjava

    Need Examples of 'Natural Webpages'

    Well, I think you may be looking at the design of the website from the wrong perspective. It is not about having a &quot;leafy&quot; background to satisfy the company leaders. It is about the feeling or message that a &quot;leafy&quot; background is sending to a visitor. If you capture that...
  14. Ineedjava

    How do I test for a preloaded image being fully downloaded?

    I am preloading a large animated gif file. When fully downloaded, the animated gif will replace (swap out) a small static gif file. So how do I test for when the image is fully downloaded? Using &quot;onload=&quot; in the BODY statement doesn't work because the web page has loaded...
  15. Ineedjava

    Controlling the loading of animated gif

    Well, your answer was very helpful and got me thinking about the solution. For some strange reason, I can't get the low resolution gif file specified in the <img lowsrc=&quot;static.gif&quot; ...> statement to show up in Internet Explorer 5.5. I have posted a question about this in the HTML...

Part and Inventory Search

Back
Top