Hello,

I have a combo box which automatically fills up with the printers that are added to the computer's system. And then when the user presses the print button, I have the following code:

Application.ActivePrinter = printer.Text
Where printer.Value is the value of the combo box which has a list of printers.

But I get the

Run-Time error '1004'
Method 'ActivePrinter' of object '_Application' failed
What is the problem here?