Forum Replies Created
-
AuthorPosts
-
Bakal ShickParticipant
To fix this problem all road got to this link:
http://alinconstantin.blogspot.com/2007_08_01_archive.html
Run gpedit.msc and navigate to:
Computer Configuration
Administrative template
System
Credential Delegation
Allow Saved Credentials with NTLM-only Server Authentication
Enable (Show: TERMSRV/*)
but why I never had to do this on any other Windows 7 machines? What is so spesial about this one laptop, where your are having this problem? A deeper look is required.
Bakal ShickParticipantDid you notice any special messages on the top of your RDP dialog box?
I am suspecting that if this is your work machine, your system admin blocked something for security purposes.
Bakal ShickParticipantYour AD post can be placed in a SPAM forum only.
– It should be short.
– It must be in English or in Russian.
– It should identify the product.
– It should identify the company.
All other SPAM messages will be deleted.
Bakal ShickParticipantI found only this awkward way of inserting copyrighted Year and Company name into the footer:
Sub InsertYYYY()
'2012-02-14 TU 15:10 Sets all footers to "©2012 Company, Inc."
For ii = 1 To ActivePresentation.Slides.Count
With ActivePresentation.Slides(ii).HeadersFooters.Footer
.Visible = msoCTrue
.Text = "©" & Year(Now()) & " Company, Inc."
End With
Next ii
End SubThis works both in PowerPoint 2007 and 2010.
However, here are the problems with this code:
– How to attach this code to “Open Presentation” event?
– How to make footer textbox to appear in a desired place in the footer?
– What about setting font size and color?
-
AuthorPosts