Printing non-printer direct with ReportViewr

0
private void btn_ok_Click(object sender, EventArgs e)
{
     this.LaudoTecnicoTableAdapter.Fill_LaudoPS(this.DSLaudosPS.LaudoTecnico, txt_lote.Text);
     this.LaudoTecnicoComplementoTableAdapter.Fill_LaudoCom(this.DSLaudosPS.LaudoTecnicoComplemento, txt_lote.Text);
     this.rpw_laudos.RefreshReport();
}

In the code above I print a report, it comes out perfectly, but I need to automate the printing by sending direct print to the printer, how can I do this using the code above and my report, how do I pass the information straight to the default system printer .

    
asked by anonymous 12.06.2018 / 13:48

0 answers