Link to home
Start Free TrialLog in
Avatar of Max Destiny
Max Destiny

asked on

Printing

LocalPrintServer local = new LocalPrintServer();

            PrintQueue queue = new PrintQueue(local, "Canon_MX470Series_Fax");

           

            local.ConnectToPrintQueue(queue);

            queue.AddJob("Job number one(1)", @"PrintTest.txt", true);

            queue.Commit();

            queue.Purge();


            local.DisconnectFromPrintQueue(queue);

it says that queue.Name has null value.
ASKER CERTIFIED SOLUTION
Avatar of Dennis Aries
Dennis Aries
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial