PC Review


Reply
Thread Tools Rate Thread

Cancel Printing Except Q

 
 
Sean
Guest
Posts: n/a
 
      16th Jan 2007
I have the following code which prevents priniting of a document. Would
it be possible to allow printing if the correct password was entered
within a userform? So on clicking the Print Icon an input box which
required the password would appear, if it is correct, document prints,
if it isn't document doesn't. If so how would I do it?

Thanks

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Cancel = True
End Sub

 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      16th Jan 2007
You could add some code to disable events (including the _beforeprint event) in
your code that gets/validates the password.

dim myPwd as string
'some validation here
if mypwd = "oktoprint" then
application.enableevents = false
worksheets("whatever").printout
application.enableevents = true
end if

And the _BeforePrint routine won't even run.

Sean wrote:
>
> I have the following code which prevents priniting of a document. Would
> it be possible to allow printing if the correct password was entered
> within a userform? So on clicking the Print Icon an input box which
> required the password would appear, if it is correct, document prints,
> if it isn't document doesn't. If so how would I do it?
>
> Thanks
>
> Private Sub Workbook_BeforePrint(Cancel As Boolean)
> Cancel = True
> End Sub


--

Dave Peterson
 
Reply With Quote
 
Sean
Guest
Posts: n/a
 
      16th Jan 2007
Thanks Dave.

How aboutthe attached code, I picked and tweaked from this NG, seems to
work okay. Can I chnage the type of Msg Box

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim sReply As String
sReply = Application.InputBox( _
Prompt:="Please enter the password", _
Title:="Password Required", _
Type:=2)
If sReply = "1234" Then
Cancel = False
'''Run the password protected code.
MsgBox " Click OK to commence Printing"
Else
Cancel = True
'''Do not run the password protected code.
MsgBox "Sorry, incorrect Password. You are not permitted to Print this
Document"
End If
End Sub




Dave Peterson wrote:

> You could add some code to disable events (including the _beforeprint event) in
> your code that gets/validates the password.
>
> dim myPwd as string
> 'some validation here
> if mypwd = "oktoprint" then
> application.enableevents = false
> worksheets("whatever").printout
> application.enableevents = true
> end if
>
> And the _BeforePrint routine won't even run.
>
> Sean wrote:
> >
> > I have the following code which prevents priniting of a document. Would
> > it be possible to allow printing if the correct password was entered
> > within a userform? So on clicking the Print Icon an input box which
> > required the password would appear, if it is correct, document prints,
> > if it isn't document doesn't. If so how would I do it?
> >
> > Thanks
> >
> > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > Cancel = True
> > End Sub

>
> --
>
> Dave Peterson


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      16th Jan 2007
There are options to show different buttons on the msgbox. But I'm not sure
that's your question.

If it is, VBA's help will explain what you can use.

Sean wrote:
>
> Thanks Dave.
>
> How aboutthe attached code, I picked and tweaked from this NG, seems to
> work okay. Can I chnage the type of Msg Box
>
> Private Sub Workbook_BeforePrint(Cancel As Boolean)
> Dim sReply As String
> sReply = Application.InputBox( _
> Prompt:="Please enter the password", _
> Title:="Password Required", _
> Type:=2)
> If sReply = "1234" Then
> Cancel = False
> '''Run the password protected code.
> MsgBox " Click OK to commence Printing"
> Else
> Cancel = True
> '''Do not run the password protected code.
> MsgBox "Sorry, incorrect Password. You are not permitted to Print this
> Document"
> End If
> End Sub
>
> Dave Peterson wrote:
>
> > You could add some code to disable events (including the _beforeprint event) in
> > your code that gets/validates the password.
> >
> > dim myPwd as string
> > 'some validation here
> > if mypwd = "oktoprint" then
> > application.enableevents = false
> > worksheets("whatever").printout
> > application.enableevents = true
> > end if
> >
> > And the _BeforePrint routine won't even run.
> >
> > Sean wrote:
> > >
> > > I have the following code which prevents priniting of a document. Would
> > > it be possible to allow printing if the correct password was entered
> > > within a userform? So on clicking the Print Icon an input box which
> > > required the password would appear, if it is correct, document prints,
> > > if it isn't document doesn't. If so how would I do it?
> > >
> > > Thanks
> > >
> > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > Cancel = True
> > > End Sub

> >
> > --
> >
> > Dave Peterson


--

Dave Peterson
 
Reply With Quote
 
Sean
Guest
Posts: n/a
 
      16th Jan 2007
Slight twist in the code. If a the user is listed in MyUser2 range name
then, print otherwise don't.

My Problem is that it's not printing regardless if the user is listed.
Anything wrong with the code?



Private Sub Workbook_BeforePrint(Cancel As Boolean)
Dim myArray As Variant
Dim arName As String
arName = "MyUsers2"
myArray = ThisWorkbook.Names(arName).RefersToRange.Value
With Application
If IsError(.Application.Match(.UserName, myArray, 0)) Then
Cancel = True
Else
Cancel = False
End If
End With
End Sub




Dave Peterson wrote:

> There are options to show different buttons on the msgbox. But I'm not sure
> that's your question.
>
> If it is, VBA's help will explain what you can use.
>
> Sean wrote:
> >
> > Thanks Dave.
> >
> > How aboutthe attached code, I picked and tweaked from this NG, seems to
> > work okay. Can I chnage the type of Msg Box
> >
> > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > Dim sReply As String
> > sReply = Application.InputBox( _
> > Prompt:="Please enter the password", _
> > Title:="Password Required", _
> > Type:=2)
> > If sReply = "1234" Then
> > Cancel = False
> > '''Run the password protected code.
> > MsgBox " Click OK to commence Printing"
> > Else
> > Cancel = True
> > '''Do not run the password protected code.
> > MsgBox "Sorry, incorrect Password. You are not permitted to Print this
> > Document"
> > End If
> > End Sub
> >
> > Dave Peterson wrote:
> >
> > > You could add some code to disable events (including the _beforeprint event) in
> > > your code that gets/validates the password.
> > >
> > > dim myPwd as string
> > > 'some validation here
> > > if mypwd = "oktoprint" then
> > > application.enableevents = false
> > > worksheets("whatever").printout
> > > application.enableevents = true
> > > end if
> > >
> > > And the _BeforePrint routine won't even run.
> > >
> > > Sean wrote:
> > > >
> > > > I have the following code which prevents priniting of a document. Would
> > > > it be possible to allow printing if the correct password was entered
> > > > within a userform? So on clicking the Print Icon an input box which
> > > > required the password would appear, if it is correct, document prints,
> > > > if it isn't document doesn't. If so how would I do it?
> > > >
> > > > Thanks
> > > >
> > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > Cancel = True
> > > > End Sub
> > >
> > > --
> > >
> > > Dave Peterson

>
> --
>
> Dave Peterson


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      16th Jan 2007
My bet is the usernames that you put in that don't match what excel has for the
..username.

Maybe a few:
msgbox application.username
will help you see the differences.

Remember that the user can change this name pretty easily.
Tools|Options|general and a little typing and they can print (or mess it up so
that they can't print!).

Sean wrote:
>
> Slight twist in the code. If a the user is listed in MyUser2 range name
> then, print otherwise don't.
>
> My Problem is that it's not printing regardless if the user is listed.
> Anything wrong with the code?
>
> Private Sub Workbook_BeforePrint(Cancel As Boolean)
> Dim myArray As Variant
> Dim arName As String
> arName = "MyUsers2"
> myArray = ThisWorkbook.Names(arName).RefersToRange.Value
> With Application
> If IsError(.Application.Match(.UserName, myArray, 0)) Then
> Cancel = True
> Else
> Cancel = False
> End If
> End With
> End Sub
>
> Dave Peterson wrote:
>
> > There are options to show different buttons on the msgbox. But I'm not sure
> > that's your question.
> >
> > If it is, VBA's help will explain what you can use.
> >
> > Sean wrote:
> > >
> > > Thanks Dave.
> > >
> > > How aboutthe attached code, I picked and tweaked from this NG, seems to
> > > work okay. Can I chnage the type of Msg Box
> > >
> > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > Dim sReply As String
> > > sReply = Application.InputBox( _
> > > Prompt:="Please enter the password", _
> > > Title:="Password Required", _
> > > Type:=2)
> > > If sReply = "1234" Then
> > > Cancel = False
> > > '''Run the password protected code.
> > > MsgBox " Click OK to commence Printing"
> > > Else
> > > Cancel = True
> > > '''Do not run the password protected code.
> > > MsgBox "Sorry, incorrect Password. You are not permitted to Print this
> > > Document"
> > > End If
> > > End Sub
> > >
> > > Dave Peterson wrote:
> > >
> > > > You could add some code to disable events (including the _beforeprint event) in
> > > > your code that gets/validates the password.
> > > >
> > > > dim myPwd as string
> > > > 'some validation here
> > > > if mypwd = "oktoprint" then
> > > > application.enableevents = false
> > > > worksheets("whatever").printout
> > > > application.enableevents = true
> > > > end if
> > > >
> > > > And the _BeforePrint routine won't even run.
> > > >
> > > > Sean wrote:
> > > > >
> > > > > I have the following code which prevents priniting of a document. Would
> > > > > it be possible to allow printing if the correct password was entered
> > > > > within a userform? So on clicking the Print Icon an input box which
> > > > > required the password would appear, if it is correct, document prints,
> > > > > if it isn't document doesn't. If so how would I do it?
> > > > >
> > > > > Thanks
> > > > >
> > > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > > Cancel = True
> > > > > End Sub
> > > >
> > > > --
> > > >
> > > > Dave Peterson

> >
> > --
> >
> > Dave Peterson


--

Dave Peterson
 
Reply With Quote
 
Sean
Guest
Posts: n/a
 
      16th Jan 2007
Dave, get this one. My Username was correct (so it should have printed)


So then I looked at my Range Name (which was only referenced to one
cell i.e. A1), but when I expanded that Range to A2 - it printed and
didn't print when the user was not permitted

Quirky or what?


Dave Peterson wrote:

> My bet is the usernames that you put in that don't match what excel has for the
> .username.
>
> Maybe a few:
> msgbox application.username
> will help you see the differences.
>
> Remember that the user can change this name pretty easily.
> Tools|Options|general and a little typing and they can print (or mess it up so
> that they can't print!).
>
> Sean wrote:
> >
> > Slight twist in the code. If a the user is listed in MyUser2 range name
> > then, print otherwise don't.
> >
> > My Problem is that it's not printing regardless if the user is listed.
> > Anything wrong with the code?
> >
> > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > Dim myArray As Variant
> > Dim arName As String
> > arName = "MyUsers2"
> > myArray = ThisWorkbook.Names(arName).RefersToRange.Value
> > With Application
> > If IsError(.Application.Match(.UserName, myArray, 0)) Then
> > Cancel = True
> > Else
> > Cancel = False
> > End If
> > End With
> > End Sub
> >
> > Dave Peterson wrote:
> >
> > > There are options to show different buttons on the msgbox. But I'm not sure
> > > that's your question.
> > >
> > > If it is, VBA's help will explain what you can use.
> > >
> > > Sean wrote:
> > > >
> > > > Thanks Dave.
> > > >
> > > > How aboutthe attached code, I picked and tweaked from this NG, seems to
> > > > work okay. Can I chnage the type of Msg Box
> > > >
> > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > Dim sReply As String
> > > > sReply = Application.InputBox( _
> > > > Prompt:="Please enter the password", _
> > > > Title:="Password Required", _
> > > > Type:=2)
> > > > If sReply = "1234" Then
> > > > Cancel = False
> > > > '''Run the password protected code.
> > > > MsgBox " Click OK to commence Printing"
> > > > Else
> > > > Cancel = True
> > > > '''Do not run the password protected code.
> > > > MsgBox "Sorry, incorrect Password. You are not permitted to Print this
> > > > Document"
> > > > End If
> > > > End Sub
> > > >
> > > > Dave Peterson wrote:
> > > >
> > > > > You could add some code to disable events (including the _beforeprint event) in
> > > > > your code that gets/validates the password.
> > > > >
> > > > > dim myPwd as string
> > > > > 'some validation here
> > > > > if mypwd = "oktoprint" then
> > > > > application.enableevents = false
> > > > > worksheets("whatever").printout
> > > > > application.enableevents = true
> > > > > end if
> > > > >
> > > > > And the _BeforePrint routine won't even run.
> > > > >
> > > > > Sean wrote:
> > > > > >
> > > > > > I have the following code which prevents priniting of a document. Would
> > > > > > it be possible to allow printing if the correct password was entered
> > > > > > within a userform? So on clicking the Print Icon an input box which
> > > > > > required the password would appear, if it is correct, document prints,
> > > > > > if it isn't document doesn't. If so how would I do it?
> > > > > >
> > > > > > Thanks
> > > > > >
> > > > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > > > Cancel = True
> > > > > > End Sub
> > > > >
> > > > > --
> > > > >
> > > > > Dave Peterson
> > >
> > > --
> > >
> > > Dave Peterson

>
> --
>
> Dave Peterson


 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      16th Jan 2007
Application.match() expects an array for that second argument. If it's not an
array, you get an error--whether or not the name matched the (only) entry or
not.

One way around it:

Option Explicit
Sub testme()
Dim myArr As Variant
Dim res As Variant
Dim myRng As Range

Set myRng = Worksheets("sheet1").Range("test1")

myArr = myRng.Value
If myRng.Cells.Count = 1 Then
'do a simple test
If StrComp(Application.UserName, myArr, vbTextCompare) = 0 Then
MsgBox "print it"
Else
MsgBox "Don't print it"
End If
Else
res = Application.Match(Application.UserName, myArr, 0)
If IsNumeric(res) Then
MsgBox "Print it"
Else
MsgBox "Don't print it"
End If
End If

End Sub

Another way is to make sure that myArr is an array.

Option Explicit
Sub testme()
Dim myArr As Variant
Dim res As Variant
Dim myRng As Range

Set myRng = Worksheets("sheet1").Range("test1")

myArr = myRng.Value
If myRng.Cells.Count = 1 Then
myArr = Array(myRng.Value)
Else
myArr = myRng.Value
End If

res = Application.Match(Application.UserName, myArr, 0)
If IsNumeric(res) Then
MsgBox "Print it"
Else
MsgBox "Don't print it"
End If

End Sub

That second version is a little slicker, huh?

Sean wrote:
>
> Dave, get this one. My Username was correct (so it should have printed)
>
> So then I looked at my Range Name (which was only referenced to one
> cell i.e. A1), but when I expanded that Range to A2 - it printed and
> didn't print when the user was not permitted
>
> Quirky or what?
>
> Dave Peterson wrote:
>
> > My bet is the usernames that you put in that don't match what excel has for the
> > .username.
> >
> > Maybe a few:
> > msgbox application.username
> > will help you see the differences.
> >
> > Remember that the user can change this name pretty easily.
> > Tools|Options|general and a little typing and they can print (or mess it up so
> > that they can't print!).
> >
> > Sean wrote:
> > >
> > > Slight twist in the code. If a the user is listed in MyUser2 range name
> > > then, print otherwise don't.
> > >
> > > My Problem is that it's not printing regardless if the user is listed.
> > > Anything wrong with the code?
> > >
> > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > Dim myArray As Variant
> > > Dim arName As String
> > > arName = "MyUsers2"
> > > myArray = ThisWorkbook.Names(arName).RefersToRange.Value
> > > With Application
> > > If IsError(.Application.Match(.UserName, myArray, 0)) Then
> > > Cancel = True
> > > Else
> > > Cancel = False
> > > End If
> > > End With
> > > End Sub
> > >
> > > Dave Peterson wrote:
> > >
> > > > There are options to show different buttons on the msgbox. But I'm not sure
> > > > that's your question.
> > > >
> > > > If it is, VBA's help will explain what you can use.
> > > >
> > > > Sean wrote:
> > > > >
> > > > > Thanks Dave.
> > > > >
> > > > > How aboutthe attached code, I picked and tweaked from this NG, seems to
> > > > > work okay. Can I chnage the type of Msg Box
> > > > >
> > > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > > Dim sReply As String
> > > > > sReply = Application.InputBox( _
> > > > > Prompt:="Please enter the password", _
> > > > > Title:="Password Required", _
> > > > > Type:=2)
> > > > > If sReply = "1234" Then
> > > > > Cancel = False
> > > > > '''Run the password protected code.
> > > > > MsgBox " Click OK to commence Printing"
> > > > > Else
> > > > > Cancel = True
> > > > > '''Do not run the password protected code.
> > > > > MsgBox "Sorry, incorrect Password. You are not permitted to Print this
> > > > > Document"
> > > > > End If
> > > > > End Sub
> > > > >
> > > > > Dave Peterson wrote:
> > > > >
> > > > > > You could add some code to disable events (including the _beforeprint event) in
> > > > > > your code that gets/validates the password.
> > > > > >
> > > > > > dim myPwd as string
> > > > > > 'some validation here
> > > > > > if mypwd = "oktoprint" then
> > > > > > application.enableevents = false
> > > > > > worksheets("whatever").printout
> > > > > > application.enableevents = true
> > > > > > end if
> > > > > >
> > > > > > And the _BeforePrint routine won't even run.
> > > > > >
> > > > > > Sean wrote:
> > > > > > >
> > > > > > > I have the following code which prevents priniting of a document. Would
> > > > > > > it be possible to allow printing if the correct password was entered
> > > > > > > within a userform? So on clicking the Print Icon an input box which
> > > > > > > required the password would appear, if it is correct, document prints,
> > > > > > > if it isn't document doesn't. If so how would I do it?
> > > > > > >
> > > > > > > Thanks
> > > > > > >
> > > > > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > > > > Cancel = True
> > > > > > > End Sub
> > > > > >
> > > > > > --
> > > > > >
> > > > > > Dave Peterson
> > > >
> > > > --
> > > >
> > > > Dave Peterson

> >
> > --
> >
> > Dave Peterson


--

Dave Peterson
 
Reply With Quote
 
Sean
Guest
Posts: n/a
 
      17th Jan 2007
Thanks Dave, I got around it as in my real data I had more than one
value. Guess my test should be the same as real


Dave Peterson wrote:
> Application.match() expects an array for that second argument. If it's not an
> array, you get an error--whether or not the name matched the (only) entry or
> not.
>
> One way around it:
>
> Option Explicit
> Sub testme()
> Dim myArr As Variant
> Dim res As Variant
> Dim myRng As Range
>
> Set myRng = Worksheets("sheet1").Range("test1")
>
> myArr = myRng.Value
> If myRng.Cells.Count = 1 Then
> 'do a simple test
> If StrComp(Application.UserName, myArr, vbTextCompare) = 0 Then
> MsgBox "print it"
> Else
> MsgBox "Don't print it"
> End If
> Else
> res = Application.Match(Application.UserName, myArr, 0)
> If IsNumeric(res) Then
> MsgBox "Print it"
> Else
> MsgBox "Don't print it"
> End If
> End If
>
> End Sub
>
> Another way is to make sure that myArr is an array.
>
> Option Explicit
> Sub testme()
> Dim myArr As Variant
> Dim res As Variant
> Dim myRng As Range
>
> Set myRng = Worksheets("sheet1").Range("test1")
>
> myArr = myRng.Value
> If myRng.Cells.Count = 1 Then
> myArr = Array(myRng.Value)
> Else
> myArr = myRng.Value
> End If
>
> res = Application.Match(Application.UserName, myArr, 0)
> If IsNumeric(res) Then
> MsgBox "Print it"
> Else
> MsgBox "Don't print it"
> End If
>
> End Sub
>
> That second version is a little slicker, huh?
>
> Sean wrote:
> >
> > Dave, get this one. My Username was correct (so it should have printed)
> >
> > So then I looked at my Range Name (which was only referenced to one
> > cell i.e. A1), but when I expanded that Range to A2 - it printed and
> > didn't print when the user was not permitted
> >
> > Quirky or what?
> >
> > Dave Peterson wrote:
> >
> > > My bet is the usernames that you put in that don't match what excel has for the
> > > .username.
> > >
> > > Maybe a few:
> > > msgbox application.username
> > > will help you see the differences.
> > >
> > > Remember that the user can change this name pretty easily.
> > > Tools|Options|general and a little typing and they can print (or mess it up so
> > > that they can't print!).
> > >
> > > Sean wrote:
> > > >
> > > > Slight twist in the code. If a the user is listed in MyUser2 range name
> > > > then, print otherwise don't.
> > > >
> > > > My Problem is that it's not printing regardless if the user is listed.
> > > > Anything wrong with the code?
> > > >
> > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > Dim myArray As Variant
> > > > Dim arName As String
> > > > arName = "MyUsers2"
> > > > myArray = ThisWorkbook.Names(arName).RefersToRange.Value
> > > > With Application
> > > > If IsError(.Application.Match(.UserName, myArray, 0)) Then
> > > > Cancel = True
> > > > Else
> > > > Cancel = False
> > > > End If
> > > > End With
> > > > End Sub
> > > >
> > > > Dave Peterson wrote:
> > > >
> > > > > There are options to show different buttons on the msgbox. But I'm not sure
> > > > > that's your question.
> > > > >
> > > > > If it is, VBA's help will explain what you can use.
> > > > >
> > > > > Sean wrote:
> > > > > >
> > > > > > Thanks Dave.
> > > > > >
> > > > > > How aboutthe attached code, I picked and tweaked from this NG, seems to
> > > > > > work okay. Can I chnage the type of Msg Box
> > > > > >
> > > > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > > > Dim sReply As String
> > > > > > sReply = Application.InputBox( _
> > > > > > Prompt:="Please enter the password", _
> > > > > > Title:="Password Required", _
> > > > > > Type:=2)
> > > > > > If sReply = "1234" Then
> > > > > > Cancel = False
> > > > > > '''Run the password protected code.
> > > > > > MsgBox " Click OK to commence Printing"
> > > > > > Else
> > > > > > Cancel = True
> > > > > > '''Do not run the password protected code.
> > > > > > MsgBox "Sorry, incorrect Password. You are not permitted to Print this
> > > > > > Document"
> > > > > > End If
> > > > > > End Sub
> > > > > >
> > > > > > Dave Peterson wrote:
> > > > > >
> > > > > > > You could add some code to disable events (including the _beforeprint event) in
> > > > > > > your code that gets/validates the password.
> > > > > > >
> > > > > > > dim myPwd as string
> > > > > > > 'some validation here
> > > > > > > if mypwd = "oktoprint" then
> > > > > > > application.enableevents = false
> > > > > > > worksheets("whatever").printout
> > > > > > > application.enableevents = true
> > > > > > > end if
> > > > > > >
> > > > > > > And the _BeforePrint routine won't even run.
> > > > > > >
> > > > > > > Sean wrote:
> > > > > > > >
> > > > > > > > I have the following code which prevents priniting of a document. Would
> > > > > > > > it be possible to allow printing if the correct password was entered
> > > > > > > > within a userform? So on clicking the Print Icon an input box which
> > > > > > > > required the password would appear, if it is correct, document prints,
> > > > > > > > if it isn't document doesn't. If so how would I do it?
> > > > > > > >
> > > > > > > > Thanks
> > > > > > > >
> > > > > > > > Private Sub Workbook_BeforePrint(Cancel As Boolean)
> > > > > > > > Cancel = True
> > > > > > > > End Sub
> > > > > > >
> > > > > > > --
> > > > > > >
> > > > > > > Dave Peterson
> > > > >
> > > > > --
> > > > >
> > > > > Dave Peterson
> > >
> > > --
> > >
> > > Dave Peterson

>
> --
>
> Dave Peterson


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
cancel printing Sharon Brown Support 1 20th Dec 2010 08:55 PM
Cancel Printing W. Wolfe Windows XP Print / Fax 1 4th May 2009 06:29 AM
Cancel Printing John Microsoft Word Document Management 3 11th May 2004 05:58 PM
Can't cancel a printing job Jim Drake Windows XP Print / Fax 0 25th Dec 2003 03:55 PM
Cancel printing Cathy Windows XP Print / Fax 1 15th Sep 2003 07:55 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:44 AM.