2
would like to change the text of the Preview
of a report Xtrareport
.
See image below :
2
would like to change the text of the Preview
of a report Xtrareport
.
See image below :
0
XtraReport1 relatorio = new XtraReport1();
relatorio.CreateDocument();
PrintPreviewFormEx printPreviewFormEx = new PrintPreviewFormEx();
printPreviewFormEx.Text = "Título do Relatório";
printPreviewFormEx.PrintingSystem = relatorio.PrintingSystem;
printPreviewFormEx.Show();
Browser other questions tagged winforms xtrareport
You are not signed in. Login or sign up in order to post.
Are you using csharp? Could you put some relevant code in the question?
– Guilherme Nascimento