Я хочу процесс печати без витрины
make_print(); using (Process p = new Process()) { string systemPath = Environment.GetFolderPath(Environment.SpecialFolder.System); p.StartInfo.FileName = systemPath + @"\rundll32.exe"; p.StartInfo.Arguments = systemPath + @"\mshtml.dll,PrintHTML """ + @"D:\Program\Report\" + test.ToString() + @".html" + @""""; p.Start(); p.Close(); p.Dispose(); What I have tried: <pre> make_print(); using (Process p = new Process()) { string systemPath = Environment.GetFolderPath(Environment.SpecialFolder.System); p.StartInfo.FileName = systemPath + @"\rundll32.exe"; p.StartInfo.Arguments = systemPath + @"\mshtml.dll,PrintHTML """ + @"D:\Program\Report\" + test.ToString() + @".html" + @""""; p.Start(); p.Close(); p.Dispose(); }