I am having some problems with selecting paper trays when sending a document to print, so I recorded a macro that selects the first paper tray and subsequent trays. The macro is as follows:
With ActiveDocument.PageSetup
.FirstPageTray = 257
.OtherPagesTray = 256
End With
When I then run this recorded macro, I get the following error:
Run-time error ‘4608’
Value out of range
The values for the paper trays are correct (this macro runs fine in Word 97).
I would be grateful for some suggestions.