OK, thanks. That sets the way the date is displayed, not the characterset in
which it's displayed. You'll still get the year, month and day in roman
characters, but if you choose Japanese, they'll be in Year/Month/Day order instead
of the usual US Month/Day/Year or other order.
If the Calendar Type is set to Japanese Emperor Reign, the display will change to
kanji: Heisei 20 nen, 11 gatsu 17 nichi. Is that what you've done?
But PPT 2003 and 2007 behave quite differently when it comes to headers/footers.
In PPT 2007, the headers/footers become shapes on individual slides that you can
select and manipulate with code like:
With ActivePresentation.Slides(2).HeadersFooters
Debug.Print .DateAndTime.Text
End With
The same code in 2003 gives you errors; Headers/Footers in 2003 don't produce
shapes on individual slides. If you use one of the predefined values for date on
the master, you get something that looks like <<#>> as the text. PPT fills in the
appropriate date value and displays it on slides but you can't, near as Ican
tell, retrieve it by code.
Depending on what you're after, you might be able to work out how PPT is
formatting the date then format the system date yourself to arrive at thesame
text.
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ:
www.pptfaq.com
PPTools:
www.pptools.com
================================================