Eisasuarez
Well-known Member
- Joined
- Mar 23, 2012
- Messages
- 653
Hi
How can i change this so it prints in Colour
I still cant get it to work, it keeps printing in black and white (This printer does have print colour option)
Please Help me
How can i change this so it prints in Colour
I still cant get it to work, it keeps printing in black and white (This printer does have print colour option)
Sub PrintMe()
Application.ScreenUpdating = False
Dim SmSh As Worksheet
Dim PrSh As Worksheet
Dim MyPrinter As String
Set SmSh = Sheets("DAILY SUMMARY")
Set PrSh = Sheets("PRINT")
MyPrinter = "??????? on Ne06:"
SmSh.PrintOut , Copies:=1, ActivePrinter:="MyPrinter"
SmSh.PageSetup.BlackAndWhite = False
Application.Goto Sheets("RAW DATA").Range("A1"), Scroll:=True
Call SortHighestValues
PrSh.PrintOut , Copies:=1, ActivePrinter:="MyPrinter"
PrSh.PageSetup.BlackAndWhite = False
Call SortHighestDays
PrSh.PrintOut , Copies:=1, ActivePrinter:="MyPrinter"
PrSh.PageSetup.BlackAndWhite = False
Application.Goto SmSh.Range("A1"), Scroll:=True
Application.ScreenUpdating = True
End Sub
Please Help me