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 Mike Lewis 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: *

  1. Subzero007

    HELP WITH STRINGS

    I think that the best way to handle this is to use a for loop and a switch statement to change each single digit in your dollar amount with a String. Some thing like this... //create a method that takes a String (so you can so String manipulation on your dollar amount public class ChangeInt()...
  2. Subzero007

    Newbee to Java

    Sign up with oracle (free) http://technet.oracle.com and you can download JDeveloper for free as well.
  3. Subzero007

    sun java training

    I had a very good experince with mine. The reason I went rather than self study is because Object oriented programming is a very abstract concept and I found it very beneficial to here about real world examples and get real feedback from a qualified instructor. I had 2 lectures and a lab per...
  4. Subzero007

    Simple Form Mail

    Sorry I was doing something else while I was reading your post. That code is for parsing html doc's. You can use the same code but simply do a match for the < and > respectively. Reagrds
  5. Subzero007

    Simple Form Mail

    I think all you have to parse out of their submissions is the </ since that is the tag delimiter. So... while (<>) { if (/\</) {&htmlerror} } I am new to CGI but that has worked for me in the past. Since HTML tags don't work without the pair of them all you need...
  6. Subzero007

    Select statement ?

    Amen to that last comment chiph. A colleague of mine ran a select * with no where clause on a non-partitioned, test fact table with 42 million records, give or take. This guy supposedly had 10 years experience and didn't even know how to kill the session so he went to the DBA for help and the...
  7. Subzero007

    Check if the username &amp; password exist in the database

    I just had to stop and say that Dragon is the BEST man. Not only does he know everything about Perl (or where to find out where the info is) but he takes the time to teach us what he knows. You're the man dragon!

Part and Inventory Search

Back
Top