May 21, 2004 #1 ptuck MIS Aug 8, 2003 130 US What is the best way to just pull the Month and populate a text field?
May 21, 2004 #2 shaddow Programmer Mar 22, 2001 1,862 RO Use Month() function you can also use Year,Day functions. check this out http://www.devguru.com/Technologies/vbscript/quickref/functions.html ________ George, M Searches(faq333-4906),Carts(faq333-4911) Upvote 0 Downvote
Use Month() function you can also use Year,Day functions. check this out http://www.devguru.com/Technologies/vbscript/quickref/functions.html ________ George, M Searches(faq333-4906),Carts(faq333-4911)
May 21, 2004 Thread starter #3 ptuck MIS Aug 8, 2003 130 US I need the actual name not the number. Is this possible? Upvote 0 Downvote
May 21, 2004 #4 shaddow Programmer Mar 22, 2001 1,862 RO Even simpler, but you should read carefuly that link. Code: MonthName(Month(dateObject)) - full month name MonthName(Month(dateObject),true) - abreviated ________ George, M Searches(faq333-4906),Carts(faq333-4911) Upvote 0 Downvote
Even simpler, but you should read carefuly that link. Code: MonthName(Month(dateObject)) - full month name MonthName(Month(dateObject),true) - abreviated ________ George, M Searches(faq333-4906),Carts(faq333-4911)