Jeff wrote on Tue, 9 May 2006 16:27:08 -0400:
J> "James Silverton" <not.jim.silverton.at.comcast.net> wrote
J> in message ??>> Jeff wrote on Tue, 9 May 2006 15:27:54 -0400:
??>>
J>>> Where do I find out how to make my own business cards? So
J>>> I can print them;I think I saw business card
J>>> templates somewhere but can't find it. A friend said it
J>>> was in office publisher;and I have Office 2003
J>>> Student/Teacher and can't find "publisher"? Thanks,
J>>> Jeff
??>>
??>> There are usually instructions for setting up included in
??>> boxes of Avery Card stock. I make mine as a table in MS
??>> Word and wrote a fairly simple macro to copy any changes
??>> from one card to the rest. If you feel it could be useful,
??>> let me know and I will post it.
??>>
??>> James Silverton.
Here's the macro anyway.
Sub Copy_cell()
'
' The intention of this is to copy the first cell
' of a 5 x 2 table to the remaining nine.
' This is for making business cards.
' Macro originally *recorded* 02/18/00
ActiveDocument.Tables(1).Cell(1, 1).Select
Selection.Copy
' Now copy the first cell to all the rest.
For icell = 1 To 9
Selection.MoveRight Unit:=wdCell
Selection.Paste
Next icell
Selection.HomeKey Unit:=wdStory
End Sub
James Silverton.