Tuesday, July 10, 2018

Add a border to all images in Word document

To add a border to all images in a Word document, the record a macro feature will not work. Here is the code though that you can add your Microsoft Visual Basic for Applications.
Sub Borders()
' Adds a border of 0.25 width and colored 50% gray to every image in the document.
Dim pic As InlineShape
For Each pic In ActiveDocument.InlineShapes
    pic.Borders.OutsideLineStyle = wdLineStyleSingle
    pic.Borders.OutsideLineWidth = wdLineWidth025pt
    pic.Borders.OutsideColor = wdColorGray50
Next
End Sub

Tuesday, June 12, 2018

Calendar Colored Overlays

Have you ever wanted to color your SharePoint calendars like you can in Outlook colors? Well, you can! It is a rather simple process that Joe Preiner at DEG Digital clearly lays out in his blog post "Four Easy Steps to Customized color Code Calendars in SharePoint."

Mr. Priener does a great job of giving users step-by-step instructions, so I'm simply going to refer you to his website as there is no need for me to further expand on the steps.

Cheers!