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 IamaSherpa 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. ak44khatri

    date format~pls help

    Well my approach is very basic one as I have never used dateformart stuff. I have not started using many classes from API and therefore always find a tricky (and less professional) approach to do it. Sometimes I end up making a class which I later realize that it already available. For example...
  2. ak44khatri

    date format~pls help

    Change Date to your desired format and then store as string and then use this string to put into query. The code for changing date into yyyy-mm-dd is: <% java.util.Date date = new java.util.Date(); int mm = date.getMonth()+1; int yyyy = date.getYear()+1900; int dd = date.getDate(); String...

Part and Inventory Search

Back
Top