Displaying current time in a Section Report.

Question:

How can I display current time in a Section Report in Elipse E3?

Solution:

To do so, you must create a CurrentTime demo tag and, via scripts, pass the value of this tag to a datafield in the Section Report. Then, convert the tag do Data format, because otherwise it will return return current time in Double format.

To format the resulting value, set up OutputFormat property in the same script as needed.

Example:

Sub ActiveReport_ReportStart
dim Application = Activator.CreateInstance(Type.GetTypeFromProgID("Reports.E3ApplicationLink"))
Application.LinkWithApplication(rpt)
Me.TextBox1.Text = DateTime.FromOADate(Application.GetServerValue("Dados.HoraAtual"))
Me.TextBox1.OutputFormat = "dd/MM/yyyy hh:mm:ss"
End Sub
Print Friendly, PDF & Email

Este artigo foi útil? Was this helpful?

Classificação média - Average rating 0 / 5. Count: 0

Leave a Reply

Your email address will not be published.Required fields are marked *