Nouvelle page word en vb6

Fermé
@£e>< Messages postés 68 Date d'inscription mercredi 22 août 2007 Statut Membre Dernière intervention 27 novembre 2009 - 3 oct. 2007 à 09:18
@£e>< Messages postés 68 Date d'inscription mercredi 22 août 2007 Statut Membre Dernière intervention 27 novembre 2009 - 4 oct. 2007 à 20:57
Bonjour,
comment insérer une page word en vb6?
merci
A voir également:

2 réponses

pitxu Messages postés 689 Date d'inscription vendredi 7 septembre 2007 Statut Membre Dernière intervention 25 mars 2015 94
3 oct. 2007 à 09:24
Private Sub Command1_Click()
Dim DocWord As Word.Document
Dim AppWord As Word.Application
Set AppWord = New Word.Application

AppWord.ShowMe
AppWord.Visible = True

'Ajoute un document
AppWord.Documents.Add
With AppWord.Selection
.TypeParagraph
.TypeText Text:="Procédure pour écrire dans Word "
.TypeParagraph
.TypeText Text:="pitxu is the best"
.TypeParagraph
.TypeParagraph
.TypeText Text1
End With


End Sub
0
@£e>< Messages postés 68 Date d'inscription mercredi 22 août 2007 Statut Membre Dernière intervention 27 novembre 2009
4 oct. 2007 à 20:57
merci, mais en fait c'est pas tout a fait ca, ce ke tu viens de donner ca ouvre un nouveau doc a chaque fois. Moi je voudrais qu'il ecrive a la suite. faire un publipostage en fait....
0