Still cant get it to work :-(

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)

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
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Could you setup a separate Colour Printer Driver and send to this, without trying to change its settings via VBA?

HTH
 
Upvote 0
Changing the page setup will not affect the printer if it prints in black and white by default. You would need fairly complex Windows API calls for that.
 
Upvote 0
I don't work weekends! ;)

See the code here for example.
 
Upvote 0

Forum statistics

Threads
1,203,486
Messages
6,055,702
Members
444,809
Latest member
mwh85

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top