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 dencom 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 TurboSRT4

  1. TurboSRT4

    Load Iframe then print

    function PrintFrame(whichFrame){ parent[whichFrame].focus(); parent[whichFrame].print(); } you answered your own question just put that function in page1.htm!
  2. TurboSRT4

    using css to style text fields

    can someone help me with this please thanks
  3. TurboSRT4

    Simple help with expressions comparing 2 conditions

    ok thanks a lot man you were great help to me today i knew how to accomplish my last issue but in a very long format :) thanks so much!
  4. TurboSRT4

    Simple help with expressions comparing 2 conditions

    little more help please :) I am printing user info to file and have the following print USERS "\n$usernxx$passworxxuserxx$streetxx$cityxx$statexx$zipxx$phonexx$faxxx$emailxx$company"; the problem here is obvious, but i need the string printed with no spaces for instance $usern name is...
  5. TurboSRT4

    Simple help with expressions comparing 2 conditions

    sweet man thank you
  6. TurboSRT4

    Simple help with expressions comparing 2 conditions

    feherke, is there also a way to push the error if the field is blank without adding a seperate if statement thank you
  7. TurboSRT4

    Simple help with expressions comparing 2 conditions

    Hey thanks for your help man! your solution will not falter with case sensitivity?
  8. TurboSRT4

    regex case sensitivity

    Sorry to keep bothering u guys but im new to using expressions i always did stuff the long and wrong way lol I have this snippet if ($first =~ /[\d\\\/~`@#\$\%^&*()-_\+\=\[\{\]\}\|\"\']/){ push @errors, qq(First Name Is Invalid<BR>); } it works ok if the string contains numbers or...
  9. TurboSRT4

    Simple help with expressions comparing 2 conditions

    No, i want numbers and letters only no spaces or special characters thank you
  10. TurboSRT4

    Simple help with expressions comparing 2 conditions

    lol sorry this should help if ($passwor =~ /[\\\/~`@#\$\%^&*()-_\+\=\[\{\]\}\|\"\']/){ push @errors, qq(Password Is Invalid<BR>); }
  11. TurboSRT4

    Simple help with expressions comparing 2 conditions

    Thanks a lot i have this following code which is returning errors if it contains a number? can someone show me the fix and expliain it please thank you
  12. TurboSRT4

    Simple help with expressions comparing 2 conditions

    hi I have this if ($first =~ /\d{1,}/{ die; } how could i compare 2 or 3 at the same time like if $first contains a numeral or if $first contains an @ or if $first contains a period. thanks guys.
  13. TurboSRT4

    using css to style text fields

    hello i have a css style applied to a text field font-family:"comic Sans MS"; padding-left:5px; padding-right:5px; width:120px; height:20px; font-size:12px; background-repeat:no-repeat; border:none; background-image: url(../../images/textField.png); background-color...
  14. TurboSRT4

    min-height in IE`

    Hello i have a problem but not a major issue, so far it its my only real hold up in making my site cross compatible. css min-height just does nothing in IE is there a simple solution. I have googled the issue but nothing has worked. thanks you
  15. TurboSRT4

    Accessing parents variabl from iframe

    sorry i got it lol problem was i had the parent variable defined in a function :) parent.var worked fine

Part and Inventory Search

Back
Top