Question:
Can I add a BarCode to Elipse E3‘s Section Report?
Solution:
Yes. To do so, add the name of a report query field to the BarCode object’s Text property.
Alternatively, you can add an application’s tag to the BarCode’s Text property. To do so, use E3ApplicationLink, an object that is available via scripts in the Section Report. Example:
Sub ActiveReport_ReportStart 'This script is required for using properly E3Chart's controls 'If you want to access the application's data, use the Application object seen below dim Application = Activator.CreateInstance(Type.GetTypeFromProgID("Reports.E3ApplicationLink")) Application.LinkWithApplication(rpt) 'msgbox (Application.GetServerValue("Dados.barcode"),,"BarCode") me.Barcode1.Text = Application.GetServerValue("Dados.barcode") End Sub