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

    Array Question

    I am using an array to set values for a select lists in HTML. I have 10 select lists that are being passed the array called "@subtotaloptions_avail" or "@subtotaloptions_sel" with a 1-10 at the end of the array. I am looping through available options and adding them to the array, however, I...
  2. wood

    Binary Mode to Ascii Mode

    I have a perl script where I am writing a file using regular ascii mode, then I need to write anther file using binmode. This all workd fine. Now I want to open another file read it, and write it again (using ascii mode). How do I change back to ascii mode once in binmode?
  3. wood

    Date Time Stamp

    I am trying to write a date time stamp to a file, but it needs a milisecond value. How do I get this value in perl?
  4. wood

    Remove Leading Zeros

    I am looking for the best way to remove leading zeros from numbers. For example I have the following numbers: 0032104595 0159789956 0001649850 1234859782 I need to remove leading zeros so the numbers end up to be: 32104595 159789956 1649850 1234859782 Any assistance would be appreciated.
  5. wood

    Shipping Labels

    I am needing to create shipping labels that will always be the same. The user enters the information that will be on the label and selects the location where the label starts on a 6 label page. The user also indicates how many labels they need to print. This label must have different text...
  6. wood

    Deleting Files

    I am wanting to delete a file that is on a mounted file system. The file resides on another computer, but can be accessed through the mount. I have tried unlink, but that doesn't remove the file. I am rather new to Perl so any suggestions are appreciated.
  7. wood

    Postal Code or Zip Code

    I am new to perl, and am trying to check if the data entered is a string or numeric. IE if the person entered a Postal Code or Zip Code. Could someone assist me? Thanks!
  8. wood

    Number Validation

    I am new to perl, and I need to validate a number that is entered. It needs to be in this format, ###.#. It can have up to 3 digits before the decimal and one after. I am trying: /\d\d\d\.\d/ but that doesn't seem to work. It allows 1234, and 123.45 through. Could someone please assist me...
  9. wood

    Passing Data from a HTML Page

    I am wanting to pass data from a web page to a PDF form. Is this possible? eg) www.anysite.com/testfile.pdf?field1=Test&field2=okay I am not sure if this is how it is done or not. Could someone give me a push in the right direction? Thanks!
  10. wood

    Cookies and Netscape

    I have a cookie set on a home page that if it is found it redirects to another page. This works fine in IE, however, it doesn't work in NetScape 7. (Netscape 4 is fine too.) It writes the cookie, but does not read it. I have the browser set to accept all cookies Does any one have any...
  11. wood

    French Accents in document.write()

    I would like to know how to include French accents in a statement like: document.write('<a style="text-decoration: none;" href="javascript:window.external.AddFavorite(url, title);"><center><font color="#6a6a6a" size="2" face="Verdana, Arial, Helvetica, sans-serif"><i><b>Cliquetez ici pour...
  12. wood

    Assign History Value

    What I am wanting to do is when I submit form data to the next page, I want the page that I just left (the previous history) to be set to a separate page. Is this possible? Can I assign a hsitory value, and how can this be done? Any help would be appreciated.
  13. wood

    Printing Question

    Does anyone know if there is a way, by using javascript, to remove the header and footer when a page prints? Any help is appreciated!
  14. wood

    Submit Button Value

    I have a submit button that is very large because of the title (value). Does anyone know how to make the text appear on two lines so that the button will be a smaller width? I need this to work with IE and NS.
  15. wood

    Connect to AS400

    I am trying to find out how to connect to an as400 so that I can add new records to a file. Can someone point me in the right direction as to what I will need, and possibly an example of code. Even a good web page that would help me find my answers would be appreciated. Thanks!
  16. wood

    French Accents in Alert Boxes

    I am trying to use è and other french accents in alert boxes, and they appear just like their descriptive or numeric code and not the letter with the accent. Any ideas?
  17. wood

    Radio Buttons reset themselves

    I have multiple sets of radio buttons, and all work fine except one. When you change the selected one to another option and click the submit button, the original radio button gets selected then the form submits. I have no problems with any of the other radio buttons. The url is below, and...
  18. wood

    How do I hide form fields?

    My problem stems from a browser defect in that my navigation menus (that are layers/divs) overlap form fields. I have figured out that I must hide the form fields when the navigation menu is open. Here is the exact problem. I am trying to hide the text box, and select box by using the...
  19. wood

    Set the Selected Option

    I need to know how to set the selected option in a dropdown box in both Netscape and IE. I have a script that gets the current day, month, and year. Then I want to set the dropdown boxes to the current date. The option boxes have all the available Months, Days, and Years. There are three...
  20. wood

    Select Box Question

    I have a select box with over 3000 options. What I am wanting to do is if the user types a &quot;h&quot; then the list goes to the begining of the h's. Then if they press &quot;o&quot; it will go to the first occurance of &quot;ho&quot; in the list, and so on. I am needing this to work in IE...

Part and Inventory Search

Back
Top