There are a few ways.... the most obvious to me would be something like
Code:
datDate = CDate(recordsetName("FieldName"))
strDate = MonthName(Month(datDate)) & ' ' & Year(datDate)
not sure if this will give you August 2005 or August 05 though...
Check on the Month, Year, MonthName functions and you should be able to solve this problem easily.