How to print the content in windows form application .
if we enter the information via windows form app. and latter we want to print that information for example in billing software , first they input each and everything after that they gave the print of the bill , so i want to know the process between Taking input then how we can use that info. to print it out as Bill? i mean is there any control or something similar to it.
Vasanth NatarajanPosted Apr 17, 2018, 4:36 AM
using (GhostscriptProcessor objGhostscriptProcessor = new GhostscriptProcessor())
{
objList.Add("-empty");
objList.Add("-dPrinted");
objList.Add("-dBATCH");
objList.Add("-dNOPAUSE");
objList.Add("-dNOSAFER");
objList.Add("-noquery");
objList.Add("-dNumCopies=1");
objList.Add("-sDEVICE=mswinpr2");
objList.Add("-f");
objList.Add(strPDFPath);
objGhostscriptProcessor.StartProcessing(objList.ToArray(), null);
}
Nitin SontakkePosted Apr 15, 2018, 2:20 AM
Akhilesh Kumar SahuPosted Apr 14, 2018, 10:08 AM
Rajkiran SwainPosted Nov 28, 2017, 7:52 AM
Ramesh PalanivelPosted Nov 28, 2017, 7:38 AM