Licensing Process

Licensing (=applying the license key) must be done at least once per computer system or device (and depending on the license also per user). The license key unlocks the downloaded demo version - no additional download is needed. Applying the license key can be done manually with the help of the license dialog, programmatically by SDK API calls and by copying a license file (INI or XML) to a specific location. On Windows, by default the license is stored the registry on a per user basis (except with file, HKLM or memory based licensing).

Online Activation Key

The online activation unlocks the product by downloading an individually issued license key from the TEC-IT server. Note that the activation key grants you access to online activation but is not identical to the final license key. This one will be stored in the software product or system after successful online activation. Site or Bulk licenses allow multiple online activation requests.

License Key

The license key is issued for your product (main version), licensee name and license type (kind, number). Depending on the product there are different possibilities for applying the license key (license dialog, API call, INI-file, HKLM Registry Key).

Site Licenses on Terminal Servers

For this purpose there are Registry- and INI-file based methods available - please contact our support (support@tec-it.com) for details.

Developer or Web Licenses

It is necessary to license programmatically each time when your application is being started or before you create a barcode.

Single or Workstation Licenses

The license key of single licenses is bound to the system hardware (via the so called "System ID"). If the system ID changes due to a hardware change, a new license key is required. For online activation, you can renew the license key through the Self-Service Portal. For products without an online key please contact us.

Bulk Licenses (Android, iOS)

For more information about bulk licenses for Android or iOS apps, please refer to the section below.

Online Activation

The activation key which has been sent to you must be entered into the Activation / License dialog of the product - available through the license menu in the software. After completing the license data (name, country, city, ZIP, email) you can request an individually issued license key online. The license key will be stored immediately on the system (on Windows in the registry/HKCU) and unlocks the product.

Depending on the license type, online activation can be carried out once or several times (per user / system).

Manual Licensing

The license key (sent to you by TEC-IT) has to be entered in the license dialog of the product. Please enter the license data exactly as submitted to you. Take care of spaces and upper/lowercase! To avoid mistakes you can use "copy & paste" if you have received the license key by email. The license-key must be applied to the product on each target system where you want to use the product.

ActiveX Controls

You can open the license dialog (in most applications) by right-clicking on the ActiveX® Control.

For Programmers

You can license directly in your program code by calling the LicenseMe() function.

The License Key is not Saved Permanently

You may encounter the following problem: after entering the license key it is recognized (key valid) but not stored in the system. After restarting your application the product is unlicensed again.

Developer Licenses

For Developer Licenses (using a license key which starts with Mem:) you have to license the product within your program code. Just call the LicenseMe() function at startup of your application or before you draw the first barcode. Registry based licensing is not available for developer licenses (or Mem: prefixed licenses).

Web-Licenses

Each instance of TBarCode in ASP.NET must be licensed separately via program code. TBarCode .NET does not support licensing via registry key or INI-file. But TBarCode OCX in ASP does support licensing through registry or INI-file.

Permission Problem

There maybe permission restrictions when reading or writing the Windows Registry. Because our product wants to store the license data in the Registry you have to check if your user account has sufficient permissions for the TEC-IT key.

User Account

In most cases license data is stored for the actual user (HKEY_CURRENT_USER) only. If you login as different user you may have to license again. A method for user independent licensing is available on request.

User Access Control

Depending on your UAC level (Vista, Windows 7) write access to the registry HKEY Local Machine may be inhibited (relevant for TConnector). This prevents from persistent licensing.

Mac OS-X

If the program has been started directly from within the DMG file, the license key cannot be saved. Install the software by double clicking the DMG file and dragging the program icon onto the application path. Afterwards try to license again. For licensing use the same user account which has been used for installing the software (write permissions!)

INI-File Licensing

For special problems there is a possibility to load the license key through a preconfigured INI-file. Please contact our support if you have unsolved licensing problems.

SDK: Licensing Within Program Code

The licensing procedure for developers is as follows:

Call the LicenseMe() method from within your application each time when your program is getting started. This has to be done before you draw a barcode!

For users of an ActiveX® Control: when you call the LicenseMe() method you should take care that an instance of the control has been created (e.g. within load event of a form), otherwise you have to create an object.

Sample for licensing TBarCode OCX in VB:

Private Sub Form_Load()
TBarCode111.LicenseMe "Mem: LicenseeInfo", 
          eLicKindDeveloper, 1, "MyLicKey", TBarCode11Lib.eLicProd1D
End Sub

Sample for licensing TBarCode DLL in VC++:

BCLicenseMe ("Licensee", eLicKindDeveloper, 1,"YourKey", eLicProd2D);
// for enumerations refer to the file TECBCEnum.h

Sample for licensing TBarCode .NET in C#:

barcode.License ("YourLicensee", LicenseType.DeveloperOrWeb, 1,
                                 "YourKey", TBarCodeProduct.Barcode2D)

More info about licensing can be found in the product documentation available in the Download Area of this site.

Microsoft Excel - Licensing During Open

Licensing happens during startup of the document which contains the ActiveX® Control.

  • Open the Microsoft VBA editor with Alt+F11.
  • In the Project Explorer select This Workbook.
  • Now enter the following code as for the Workbook-Open Event (sample for TBarCode OCX V11):
  • Private Sub Workbook_Open()
     Dim tbc As TBarCode11
     Set tbc = CreateObject ("TBarCode11.TBarCode11")
     tbc.LicenseMe "Mem:Licensee", eLicKindDeveloper, 1, "Key", TBarCode11Lib.eLicProd1D
     Set tbc = Nothing
    End Sub

We recommend to password protect your VBA code in the project property window.

Microsoft Access - Licensing with Autoexec Macro

Below we show you how to license at startup of the database (sample for TBarCode OCX V11). Create a new Module with the following function (in Microsoft VBA Editor):

Public Function LicenseTBarCode()
 Dim TB As New TBarCode11
 TB.LicenseMe "Mem:Licensee", eLicKindDeveloper, 1, "Key", TBarCode11Lib.eLicProd1D
 Set TB = Nothing
End Function

Create a new Macro named "Autoexec" with the following settings:

Action = RunCode
Function Name = LicenseTBarCode()
Don't forget to include a reference to the type library of the ActiveX® Control in the menu Tools - References (otherwise enumerations cannot be used). We recommend to password protect your VBA code in the project property window.

C# Code for Licensing both on Windows (32 Bit) / Windows x64

The following information is valid only for TBarCode Version 10.2.2 and earlier. Starting with version 10.2.4 there is no separate licensing for 32 bit and 64 bit components anymore.

You can use the following C# code to adapt the license key dynamically to 32-Bit or 64-Bit versions of the binary:

TBarCode .NET V10

// are we in 32-bit mode?
if (IntPtr.Size == 4)
  barcode.License("Your Licensee Name", LicenseType.DeveloperOrWeb, 1, "Your 32 Bit Key",
    (TBarCodeProduct) 2003 /* 2D V10!*/);
// or in 64-bit process?
else if (IntPtr.Size == 8)
  barcode.License("Your Licensee Name", LicenseType.DeveloperOrWeb, 1, "Your x64 Bit Key", 
    (TBarCodeProduct)2005 /* 2D x64 V10!*/);
//else
//error, unknown platform!

TBarCode OCX V9

// are we in 32-bit mode?
if(IntPtr.Size == 4)
   objTBarCode.License("Your Licensee Name", tag_licKind.eLicKindWeb, 1, "Your 32 Bit Key", 
   (tag_licProduct)45 /* 2D V9!*/);
// or in 64-bit process?
else if (IntPtr.Size == 8)
   objTBarCode.License("Your Licensee Name", tag_licKind.eLicKindWeb, 1, "Your x64 Key", 
   (tag_licProduct)49 /* 2D V9!*/);
//else
//error, unknown platform!

Licensing TBarCode OCX in Microsoft InfoPath (JavaScript)

Please use this code to license TBarCode OCX V11 in the OnLoad event of your InfoPath document (through JavaScript):

function XDocument::OnLoad(eventObj)
{
   var tbc = new ActiveXObject("TBarCode11.TBarCode11") 
   tbc.LicenseMe("Licensee", 2, 1, "YourKey", 2023 )
}

SSL Error During Online-Licensing

During Online-Activation of Barcode Studio you may see a SSL error message. You can try to confirm/override the error (e.g. Issuer Certificate) with Yes (Ignore) - but there maybe other errors (e.g. SSL Context error), which you cannot override.

The possible solutions are:

  • Update your Barcode Studio installation to Version 15.11 or later. After that you can continue to use the online activation (as usual). Please consider proxy and firewall settings in your network. You can download the latest update here: Download Barcode Studio Update.
  • If you do not have a license for version 15 or you want to use an earlier version, you can use manual licensing as an alternative. This does not require online access to the activation server. If you do not have your license data at hand for manual licensing, please contact us with information about the licensee.

Bulk Licenses (Android, iOS)

The following instructions are intended for customers with bulk licenses only.
If you buy/subscribe via Google Play or Apple's App Store you don't need an activation key.

Methods for Bulk Licensing

The following methods for bulk licensing are available:

  • Online
    Licensing is done by manually entering an activation key into the app. Internet access is required during activation. The app contacts TEC-IT's activation server and retrieves a license for the device(s) in question. On Android, the online key can also be stored within an activation file (if not to be entered manually). The apps Scan-IT to Office and Scanner Keyboard also support the distribution of activation keys by your MDM system.
  • Offline
    Licensing is done by applying a license file. For creating the license file, TEC-IT needs to know the Android IDs (alternatively IMEIs or serial numbers) of the devices in question. A copy of the license file must be placed in the external app folder of each device to be licensed.
Please note that each bulk license (also subscription) is bound to a device ID (either Android ID, IMEI or serial number).

Android

Android users must use a special app version that is available in Managed Google Play or on the TEC-IT download page. The public Google Play version is not suitable for bulk licensing.
For detailed requirements, please refer to the respective product FAQ pages:

Scan-IT to Office Android - Bulk License Activation

Single Device

To activate a bulk license (volume license) on a single Android device manually, follow these steps:
(Alternatively you can also use the activation file from your license e-mail - see below!)

  • Start the app.
  • Open the Settings, section License State, and open the license/subscription view.
  • In the license/subscription view, select Enter activation key from the menu. A dialog will appear, asking for your activation key (see picture).
  • Enter your valid activation key and confirm with OK.
  • If the activation was successful, the view is updated accordingly and the expiration date of the bulk license is displayed.

Multiple Devices

To activate a bulk license on multiple Android devices via a Mobile Device Management system, follow these steps:

  • You can use Managed App Configuration to activate multiple devices via your Mobile Device Management (MDM) solution.
  • Please contact your MDM vendor for a documentation on how to configure Managed App Configuration in your MDM solution.
  • If your MDM solution does not automatically recognize the Managed App Configuration, please use the following structure:

TEC-IT Activation
Key = tecit.activation
Type = bundle

Activation-Code
Key = activationCode
Type = string
Value = <Your Activation Key>

Activation File

You can also import the activation data from file. You will find such an activation file attached to your Scan-IT to Office invoice e-mail.

For manual import (on a single Android device) follow these steps:

  • Copy the activation file to your device (e.g., to the Download folder).
  • Start the app.
  • Open the Settings, section License State, and open the license/subscription details.
  • In the license/subscription details select Load license file from the menu and use the file picker to select the file.
  • If the activation was successful, the view is updated accordingly and the expiration date of the bulk license is displayed.

For auto-import (on multiple Android devices) place the TEC-IT activation file in one of the supported folders on the device. The app validates the license during startup (or when you open the license/subscription view).
For supported auto-import folders, please refer to the respective product FAQ pages:

iOS

iOS users are good to go with the app installed from the App Store.

Scan-IT to Office Android - Bulk License Activation

Single Device

To activate a bulk license (volume license) on a single iOS device manually, follow these steps:

  • Start the app, open the menu and select Buy Subscription or press the Subscribe button.
  • In the Subscriptions view, press the key icon in the top right corner. A dialog will appear, asking for your activation key (see picture).
  • If the activation was successful, the Subscriptions view is updated accordingly, and the expiration date of the bulk license is displayed.

Multiple Devices

To activate a bulk license on multiple iOS devices via a Mobile Device Management system, follow these steps:

  • You can use Managed App Configuration to activate multiple devices via your Mobile Device Management (MDM) solution.
  • Please contact your MDM vendor for a documentation on how to configure Managed App Configuration in your MDM solution.
  • Some MDM solutions require an AppConfig spec file. You can download this file here .
  • If your MDM solution does not use a spec file, please configure the Managed App Configuration as following:
    - Key = MOAS_ActivationKey
    - Type = String/Text
    - Value = <Your Activation Key>