View Single Post
 
Old 10-17-2014, 11:20 PM
gmayor's Avatar
gmayor gmayor is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2014
Posts: 4,142
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

Replace the white box with a white filled table cell (with or without a border).
Table cells (and frames) will adjust to the amount of text. Text boxes won't.

As for ease of access - create a macro to perform the steps e.g. as follows. Change the path and template name as appropriate and add the macro to a button on the QAT (Quick Access Toolbar). The process is virtually identical to that shown at http://www.gmayor.com/installing_macro.htm (albeit that link shows the process in Word).

Code:
Sub PersonalMessage()
Dim oItem As MailItem
Const strFolder As String = "D:\Word 2010 Templates\"
Const strFilename As String = "Example.oft"
    Set oItem = Application.CreateItemFromTemplate(strFolder & strFilename)
    oItem.BodyFormat = olFormatHTML
    oItem.Display
    Set oItem = Nothing
End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote