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 TouchToneTommy 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: tnsbuff
  • Content: Threads
  • Order by date
  1. tnsbuff

    Strange problem when comparing Hex code

    Hi, Can someone tell me why this script works when I use color "names" in the if comparison, but not when I use the hexadecimal code: (the problem only seems to be in the if statement, it's ok when I use hex code in the other lines)...strange function toggleColor(){ coloredBkg =...
  2. tnsbuff

    no line breaks

    Hi, I don't know if you'll be able to help me with this or not, but here's my problem. I've been using a Perl "form to email" script that works just fine using html forms. Now I've created a Flash form and I'm using the same script to process it, and everything is working hunky dory except for...
  3. tnsbuff

    Stripping White Space Problem

    Hi, I have a form that I have been running that is a combination of FrontPage javascript validation and a custom javascript that determines which cgi script will perform the action based on an option field. That all works fine except that FrontPage validation doesn't take into consideration...
  4. tnsbuff

    Can't get Simple Loop to Work

    I know I'm doing something simple incorrectly here, but please tell me what's wrong with the following loop where I'm trying to retrieve the variables from a form where all of the form variables are named q1 through q3: <? for ($i=1; $i<=3; $i++){ $q.$i = $_POST['q.$i']; echo "$q.$i <br>"; } ?>
  5. tnsbuff

    Warning: mail(): SAFE MODE Restriction in effect.

    Hi, I'm having a problem with sending html mail from a form. I get an error: Warning: mail(): SAFE MODE Restriction in effect. The fifth parameter is disabled in SAFE MODE. The 5th parameter is $mailheaders. This is the related code: $mailheaders = "MIME-Version: 1.0\n"; $mailheaders .=...
  6. tnsbuff

    Only Upper Case Allowed in Text Box on Gift Certificate

    Hi, I'm a complete newbie with Publisher and I'm trying to make a gift certificate. I noticed that with many of the templates, in the text box where it says "Gift Certificate" it will only let me use all caps. Is there a way to disable this so that I can use a mix of upper and lower case? If...
  7. tnsbuff

    Bug with Mozilla/Netscape and screen.width?

    I'm having a problem with setting a background image depending on viewer's resolution. It works fine in IE 6 and Opera 7, but not in Netscape 7 or Firefox 1.0, at least not when the resolution is 800 x 600 (it still displays the 1024 graphic.) Here's my code: <script> function changeBkg(){...
  8. tnsbuff

    Highlight Current Page

    Hi, I'm trying to figure out how I can use javascript and css to change the background of a cell in a navigation table when the link in that cell is the current page being viewed. I'm thinking something like comparing this.href to document.location, but I'm a newbie and can't get beyond that...
  9. tnsbuff

    how to reference an id in IE and Netscape

    Hi, It seems that I can reference a div id using: document.all('idname') but I can't seem to get Netscape to work. I tried using: document.getElementByID('idname') but it doesn't seem to work. Thanks for any tips,
  10. tnsbuff

    Problem with PDF files

    Hi, I have some PDF files that I've uploaded to a new site. The pdf's were created by someone else, and when I try to download them from the site, Adobe Reader opens with an error: "cannot extract the embedded font . . . Some characters may not display or print correctly". (This is on a Windows...
  11. tnsbuff

    Outlook Express Mailing List

    Hi there, I did a search but did not find any results for my question. I've created a group of contacts from my Outlook Express Address Book. When I create a new email message that I want to send to the group, I put the group name in the "To" area, but when the message is received by people...
  12. tnsbuff

    Operating System

    Hi, I know this is off topic, but I don't know where else to post. Does anyone know of a site with good, up to date statistics about operating system, monitor resolution, etc.? Thanks so much in advance,
  13. tnsbuff

    Multiple Windows Open at Same Time

    Hi, Can someone tell me how I can keep more than one popup window open on top of the parent window? I have three links from the parent window that open smaller popups. Right now, they always go behind the parent window when you click one of the other links. Thanks a bunch...
  14. tnsbuff

    onMouseOver and OnMouseOut problem in Netscape

    Hi there, I'm trying to exchange background images in a table cell onMouseOver. It works fine in IE, but the onMouseOut doesn't work in Netscape (7.0), although onMouseOver does. Here's my code: <table style="background: url('bkg1.gif'); "><tr><td> <a href="Link1"...
  15. tnsbuff

    how to prevent bulleted list from being indented

    Hi, I've tried setting the text-indent and margins for the <ul> and <li>. Is there a way to prevent a bulleted list from being indented? I just want it to line up with the paragraph above it (not indented). Thanks for any suggestions!
  16. tnsbuff

    Help! Missing Folder in Outlook Express

    Hi, I hope someone can help as I'm out of ideas. Ok, I noticed this morning that one of my email folders was missing in O.E. After looking through all of the other folders (thinking maybe it had inadvertently gotten moved to another folder), I did a System Restore (suggested by the Sony...
  17. tnsbuff

    Positioning an Image at Bottom of Cell

    Hi, I was wondering if it's possible to position an image at the bottom of a tall cell without using valign=bottom. I have a group of navigation links that I want at the top so I have to use valign=top for the cell, but I don't want the image to be right under the links if the page is really...
  18. tnsbuff

    Expired Certificate-Help!

    Hi, The hosting service I use has been displaying an expired certificate since December 2 when someone tries to use the checkout, and also when I try to login to my account. I have contacted them twice about this, but nothing is being done. How much of a security threat is it that the...
  19. tnsbuff

    Expired Certificate

    Hi, The hosting service I use has been displaying an expired certificate since December 2 when someone tries to use the checkout, and also when I try to login to my account. I have contacted them twice about this, but nothing is being done. How much of a security threat is it that the...
  20. tnsbuff

    Problem with Window.Open

    Hi, I have a little popup window that contains a form to login to a section. This popup does not contain a menubar or anything. The problem is that after you login, the page that opens also does not have a menubar, etc. I forced the page you go to after logging in to maximize when it opens...

Part and Inventory Search

Back
Top