View Single Post
 
Old 10-17-2011, 11:16 PM
Magid Magid is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Oct 2011
Posts: 1
Magid is on a distinguished road
Default

Quote:
Originally Posted by OfficeHelpSG View Post
Hello,
I'm using Microsoft Word 2010, and every Macro I try and create for a letterhead, does not work. The formatting of my text is not shown when I run the macro! The size changes, and the bold does not apply. The weird thing is everytime I run the macro in the same document or in a different document, it doesnt ever show the same.
I'd like a letterhead macro to turn out like this (The top line should be in 16, the second line in 10 and the last two lines in size 12):

Turner and Sons Accouting Pty Ltd
ABN: 22 333 111 555
22 Kings St, Sydney 2000
Phone: (02) 9675 4444 Fax: (02) 9675 4443


The code for the text is:
Sub Letterhead()
'
' Letterhead Macro
'
'
Selection.TypeText Text:="Turner and Sons Accounting Pty Ltd"
Selection.TypeParagraph
Selection.Font.Bold = wdToggle
Selection.Font.Size = 10
Selection.TypeText Text:="ABN: 22 333 111 555"
Selection.TypeParagraph
Selection.Font.Size = 12
Selection.TypeText Text:="22 Kings St, Sydney 2000"
Selection.TypeParagraph
Selection.TypeText Text:="Phone: (02) 9675 4444 Fax: (02) 9675 4443"
End Sub
I also have a similar problem with office 2003,2007,2010
I am test macro in word 2003,2007 and 2010
Macro
does not apply font and size
Can you help me for this Problem??
Reply With Quote