FaridMasood -2 Junior Poster in Training

If someone have any idea that how to check that a file is added to the printer queue.
Here is my case details

Process p = new Process();
p.StartInfo.FileName = fileAddress;
p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.Arguments = "open";
p.StartInfo.Verb = "print";
p.Start();

I am using this code to add the txt file to printer this is working fine now all i needs is that i want to exit thsi process after making sure that this file is add to the printer queue please help........................................