B
Brian
I have worked out a signature macro, but there is one small annoyance with
it. It does not underline the email address. If you enter an email address
directly into a document, Word can recognise it as an email address. But
running this macro does not underline it.
Any suggestions, or is this just a genuine "feature"?
Selection.Font.Bold = wdToggle
Selection.TypeText Text:="Firstname Lastname"
Selection.TypeParagraph
Selection.Font.Bold = wdToggle
Selection.Font.Size = 8
Selection.TypeText Text:="Email: (e-mail address removed) "
Selection.TypeParagraph
Selection.Font.Size = 12
With ActiveDocument.PageSetup
.FirstPageTray = wdPrinterLowerBin
.OtherPagesTray = wdPrinterUpperBin
End With
End Sub
it. It does not underline the email address. If you enter an email address
directly into a document, Word can recognise it as an email address. But
running this macro does not underline it.
Any suggestions, or is this just a genuine "feature"?
Selection.Font.Bold = wdToggle
Selection.TypeText Text:="Firstname Lastname"
Selection.TypeParagraph
Selection.Font.Bold = wdToggle
Selection.Font.Size = 8
Selection.TypeText Text:="Email: (e-mail address removed) "
Selection.TypeParagraph
Selection.Font.Size = 12
With ActiveDocument.PageSetup
.FirstPageTray = wdPrinterLowerBin
.OtherPagesTray = wdPrinterUpperBin
End With
End Sub