printer spooler

S

sunilpatel

Hi all,

What i need to do is to Print a certain area of the work sheet and then
check if it has vanished from the print spooler
(think thats what you call the place where documents sit until successfully
printed.).

Can anyone help, i have this so far. The important thing is to monitor if
area printed, as the requirement is that a particular area can only be
printed once.

Sub setprintarea()
Dim myrange As String
STRow% = 12
myrange = Cells(Rows.Count, 1).End(xlUp).Address
ActiveSheet.PageSetup.PrintArea = "$A$" & STRow & ":" & myrange
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
End Sub
Thanks
 
T

Tom

Did you ever get this to work?
I need the same capability.
If so, could you please post the code?
Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top