Posts

Showing posts from October, 2018

C# SSRS - Thermal Printing - 3 Inch Printing Configuration to print directly without preview

  //Report Printing Section         private int m_currentPageIndex;         private IList<Stream> m_streams;         private Stream CreateStream(string name, string fileNameExtension, System.Text.Encoding encoding,             string mimeType, bool willSeek)         {             Stream stream = new MemoryStream();             m_streams.Add(stream);             return stream;         }         private void Export(LocalReport report)         {             string deviceInfo = @"<DeviceInfo><OutputFormat>EMF</OutputFormat><PageWidth>3.5in</PageWidth><MarginTop>0.01in</MarginTop><MarginLeft>0.01in</MarginLeft><MarginRight...