Bonjour,
Voici mon code:
System.Diagnostics.Process l_Acread = new System.Diagnostics.Process();
l_Acread.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
l_Acread.StartInfo.CreateNoWindow = true;
l_Acread.StartInfo.Verb = "print";
l_Acread.EnableRaisingEvents = true;
l_Acread.StartInfo.FileName = m_NomPdf;
l_Acread.Start();
Le document s'imprime une fois. Je voudrais l'imprimer 3 fois.
Ou mettre cette instruction? A la suite du fichier avec quel commutateur?
Dans les arguments?
Gérard