You can change it to a form letter type mail merge main document by using
the first button on the mail merge toolbar (View>Toolbars>Mail Merge)
I guess as you are talking about catalog, rather than directory, you are
using a version of Word before XP so the type of mail merge main document
can be selected/changed in section 1 of the Mail Merge Helper dialog.
A catalog type document allows you to have the data for each record appear
on the same page (until the page is full) rather than having a next page
section break inserted between each set of data as in the case of a form
letter type mailmerge

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> We have written a small program to perform merges between a database
> and Microsoft Word merge documents that our customers create.
[quoted text clipped - 8 lines]
>
> -Vincent
Lüko Willms - 28 Oct 2006 09:45 GMT
Am Sat, 28 Oct 2006 07:25:58 UTC, schrieb "Doug Robbins - Word MVP"
<dkr@REMOVECAPSmvps.org> auf microsoft.public.word.vba.general :
> You can change it to a form letter type mail merge main document by using
> the first button on the mail merge toolbar (View>Toolbars>Mail Merge)
or programmatically by assigning
ActiveDocument.MailMerge.MainDocumentType = wdFormLetters
instead of
ActiveDocument.MailMerge.MainDocumentType = wdCatalog
or
ActiveDocument.MailMerge.MainDocumentType = wdNotAMergeDocument
Yours,
L.W.