I am creating a letter in Word 2000 via Access VBA. It all works fine, except, I need to set the paper source to manual feed for printing. Can anyone help? This is a new word object, not a Word Merge.
Here is a sample of the code:
Set oApp = New Word.Application
Set wDoc = oApp.Documents.Add
oApp.Visible = True
With wDoc
.PageSetup.LeftMargin = 90
.PageSetup.RightMargin = 90
.PageSetup.TopMargin = 100
.Range.Font.Name = "Arial"
.Range.Font.Size = 11
End With
With oApp
.Selection.TypeText Format(Now(), "mmmm d, yyyy"
.Selection.TypeParagraph
.Selection.TypeParagraph
.Selection.TypeParagraph
.Selection.TypeParagraph
.Selection.TypeText "blah blah blah"
End With
Thanks!
Here is a sample of the code:
Set oApp = New Word.Application
Set wDoc = oApp.Documents.Add
oApp.Visible = True
With wDoc
.PageSetup.LeftMargin = 90
.PageSetup.RightMargin = 90
.PageSetup.TopMargin = 100
.Range.Font.Name = "Arial"
.Range.Font.Size = 11
End With
With oApp
.Selection.TypeText Format(Now(), "mmmm d, yyyy"
.Selection.TypeParagraph
.Selection.TypeParagraph
.Selection.TypeParagraph
.Selection.TypeParagraph
.Selection.TypeText "blah blah blah"
End With
Thanks!