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

asked on

PrintingFoundIt(Almost!(Damn!))

static void Main(string[] args)
            {
                  LocalPrintServer local = new LocalPrintServer();

                  

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

                  local.ConnectToPrintQueue(queue);



                  queue.AddJob("New Job", @"PrintTest.txt", true);

                  queue.Purge();

                  local.DisconnectFromPrintQueue(queue);
            }

where is the Print() thing or something like that cant find it HELP!!!
ASKER CERTIFIED SOLUTION
Avatar of Douglas Suyemoto
Douglas Suyemoto
Flag of United States of America 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