... Ausdruck per Word über einen Button oder Aktion. Du benötigst für den Ausdruck eine Word-Vorlage. In dieser Vorlage hast du bereits die Seitennummerierung entsprechend administriert...
... der Text aus Notes wird in Word an bereits hinterlegten "Lesezeichen" abgelegt...
... ich habe den Code aus dem LDD...
'Defining variables
Dim myApp As Variant
Dim tmp as string
'Starting ms word as a ole object
Set myApp = CreateObject("Word.Application")
'Hiding word from the user
myApp.Visible = False
'Opening the template as a new doc, change tmp$ to the needed template path
myApp.Documents.Add (tmp$)
'Selecting what bookmark to write to
myApp.ActiveDocument.Bookmarks("WhoTo").Select
'Define what you need to write in tmp$
'Then write it to the bookmark
myApp.Selection.TypeText(tmp$)
'Setting word to print in the foreground, i do this to prevent the rest of the
code to execute before word is finished
myApp.Options.PrintBackground = False
'Starting printing
myApp.ActiveDocument.PrintOut
'Closing the word document without saving changes
myApp.Documents.Close(wdDoNotSaveChanges)
'Closing word
myApp.Application.Quit
'Releasing myapp
Set myApp = Nothing
... wenn du allerdings alles zu Fuß programmieren möchtest, dann empfehle ich dir die Schritte über ein Makro in Word aufzuzeichnen und dann den VBA-Code entsprechend ausprobieren und verwenden..
ata