Barcode Software, QR/2D
Barcode Software - SAP
Label Software
Reporting Software
Data Acquisition
Mobile Data Acquisition
Online Tools
Barcode Studio
TBarCode Office
TBarCode SDK
TBarCode/X
TBarCode/SAPwin
TFORMer
Freeware
Online Order
Prices
FAQs
License Terms (PDF)
Help Me!
Knowledge-Base
Links
Protected Area
Software and Apps
Web and Cloud
Training Courses
SAP Consulting
Contact
References
Resellers
Integrators
Partners
Link to TEC-IT
Jobs
Legal Terms
Imprint
TFORMer SDK can be used to generate the output in perfect quality as part of your application. Embed the report writer into scripts, office applications and conventional software projects. For this you can choose one of the following reporting components (APIs) from the SDK:
The graphic below shows the principal data flow of TFORMer Designer and TFORMer SDK.
The following sample shows you how to apply TFORMer SDK in VB Script (Microsoft Visual Basic Scripting). This example is available with the installation of TFORMer:
Create the required instances of the TFORMer COM objects.
Set tformer = CreateObject("TFormer8Lib.TFormer") Set printJob = tformer.CreateJob ' Create an output job
Adjust the form layout using repository (..\..\Demo Repository\Demos.tfr), project (TFORMer_Runtime_Examples) and form name (BarcodeLabels) according to your needs:
printJob.RepositoryName = "..\..\Demo Repository\Demos.tfr" printJob.ProjectName = "TFORMer_Runtime_Examples" printJob.FormName = "BarcodeLabels"
The data fields in the form are filled with the values taken from the data source. (NewDataSourceRecordSet). This is done directly from the program code (AddNewRecord and SetDataField). You can also import data field values by means of external database or files:
Set dataSource = printJob.NewDataSourceRecordSet dataSource.ClearRecords dataSource.AddNewRecord dataSource.SetDataField "ArticleName", "Mac Adapter" dataSource.SetDataField "ArticleNo", "12001234" dataSource.SetDataField "ArticlePrice", "39,00"
Form printing and exporting. Choose from an output device or an export format (here the pdf file output.pdf):
printJob.PrinterName = "PDF:" & objEnv("TMP") & "\output.pdf" printJob.PrintForm
Info Sheet (PDF)
White Paper (PDF)
Online Demo: Etiketten Generator