By not silent printing, I mean the part that after calling PrintDoc, a progress dialog is shown during printing reporting the status and progress on printing to device context.
my setup :
- Virtual Print Engine v6.0 (01 / 2010)
- C#+3
- VPE dynamic object instantiates during run time
- Code: Select all
using (VPE = new VpeControl())
{
VPE.OpenDoc();
...
VPE.PrintDoc(false);
VPE.CloseDoc();
}