PC Review


Reply
Thread Tools Rate Thread

Automatically printing file name, date and time of printing

 
 
=?Utf-8?B?RXJpa2E=?=
Guest
Posts: n/a
 
      22nd Mar 2005
How can I get PPT to print out the file name, date/time of printing as a
footer whenver I print? I am making many drafts and it would help if I could
see the fiel name and date/time I printed in order to keep track of the
latest file.
 
Reply With Quote
 
 
 
 
Abhishek Bagga
Guest
Posts: n/a
 
      22nd Mar 2005
You can add this macro to your presentation and execute it before printing
and it wil give you the desired result

You can customise the display according to your own needs

Sub PrintNamenDate()
Dim i As Long
Dim shp As Shape
Dim hasname As Boolean
Dim newNameBox As Shape

For i = 1 To ActivePresentation.Slides.Count
hasname = False
For Each shp In ActivePresentation.Slides(i).Shapes
If shp.Name = "MyVeryOwnFooter" Then
hasname = True
End If
Next
If hasname = True Then
ActivePresentation.Slides(i).Shapes("MyVeryOwnFooter") _
.TextFrame.TextRange.Text = Presentations(1).Name & " " &
Now ' or Presentations(1).FullName
Else
Set newNameBox = _
ActivePresentation.Slides(i).Shapes.AddShape _
(msoTextOrientationHorizontal, 0#, 504#, 720#, 28)
newNameBox.Name = "MyVeryOwnFooter"
newNameBox.TextFrame.TextRange.Text = Presentations(1).Name & "
" & Now ' or Presentations(1).FullName
newNameBox.TextFrame.TextRange.Font.Size = 12
newNameBox.TextFrame.TextRange.ParagraphFormat.Alignment =
ppAlignCenter
End If
Next i
End Sub

--
-Abhishek

authorGEN - PowerPoint to Flash in just a single Click
http://www.authorgen.com


"Erika" <(E-Mail Removed)> wrote in message
news:230133E1-8835-4182-B8D0-(E-Mail Removed)...
> How can I get PPT to print out the file name, date/time of printing as a
> footer whenver I print? I am making many drafts and it would help if I
> could
> see the fiel name and date/time I printed in order to keep track of the
> latest file.



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Printing in time & date sequence Mike Windows XP Print / Fax 0 3rd Dec 2008 05:43 AM
How do I delete day date time when printing =?Utf-8?B?d3Jlbm55LjE=?= Microsoft Word Document Management 6 5th Feb 2006 11:43 PM
Automatically Printing Calendars at a certain time. =?Utf-8?B?VmluY2UgQw==?= Microsoft Outlook Discussion 0 8th Nov 2005 04:12 PM
printing the saved date/time =?Utf-8?B?Um9nZXI=?= Microsoft Excel Misc 2 5th Apr 2004 02:54 PM
Printing date and time Tman Microsoft Access Reports 5 9th Jan 2004 01:53 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:23 PM.