Default Avatar

Rob Lansu

Rob Lansu

About

Username
Rob Lansu
Joined
Visits
0
Last Active
Roles
Members

Comments

  • ipong wrote: » string parameter = Report.GetParameterValue("ParameterName").ToString(); if (parameter.Equals("")) Thanks, this works! Hope it helps others who can't find it in the manual as well
  • I found this topic while further researching on my own question number 12675. I wanted to add a backpicture programmatically. Thanks to the answer Saeed has given to his own question I managed to produce the following code: FastReport.ReportP…
  • Thanks to Saeed Moradi I found how to do it in code. The topic of his question is 8661 and he found: Watermark watermark = new Watermark(); watermark.Enabled = true; watermark.Text = "Demo Version"; ReportPage page = reportObject.Pages.OfType…
  • I've found how to do it in the designer: Select the page object Find the Watermark property (at the bottom) Click it once to show a button with three dots Press the button Select the second tabpage Load an image So I have to look for th…