Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How To add text and page number to word documents footer
Message
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Titre:
How To add text and page number to word documents footer
Divers
Thread ID:
00951777
Message ID:
00951777
Vues:
51
In the code below, I have page numbers that are added to the footer of the word document. The page number is centered, apparently automaticly. I'd like to add text to the left portion of the footer "Application Name" and have the page number on right. Anybody have some clues how to do this?
	oWord=CREATEOBJECT("Word.Application")
	IF VARTYPE(oWord)=[O]
		oWord.documents.open("c:\stats.htm")
		oword.Documents.Item(1).Sections(1).Footers.Item(1).PageNumbers.Add(1)
		oword.documents.item(1).sections(1).footers.
		oword.ActiveDocument.PrintOut
		oWord.Documents.Close()
		oWord=.null.
		release oWord		
	ELSE 
		thisform.olecontrol1.document.execCommand("Print")
	ENDIF 
Thanks
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform