How to override translations for particular host characters

How to override translations for particular host characters

There are certain characters that do not translate correctly on my host. Is there some way to override translations to get the desired result?

As of Flex Terminal Emulator version 4.0.4024.1512, overriding of character translations is now possible. Once upgraded to this version or newer, simply place a text file containing the translations to override into the Flex Terminal Emulator working directory (...\Documents\FlexSoftware\FlexTerm\ by default) and name it according to the current Host Code Page being used. For example, if using the default 1140 US/Canada Euro code page, the file would be named 1140.atb.

The file will contain each translation to override where the first value is the host character (EBCDIC hex value) you want to replace, the second value is the new character (Unicode hex value) that you want it to be mapped to.

In the example below, the user wants to use "[" for the host character 0xAD, so they would set:

AD=5B

Where 0x5B is the Unicode value of the character "[".

Similarly, for 0xBD, they want to map it to "]" which is 0x5D.

Sample 1140.atb file contents:

AD=5B
BD=5D

    • Related Articles

    • What host code pages are available in Flex Terminal Emulator

      The following host code pages are supported in Flex Terminal Emulator: 037 US / Canada 273 Austria / Germany 277 Denmark / Norway 278 Finland / Sweden 280 Italy 284 Spain / Latin America 285 United Kingdom 297 France 500 International 1140 US / ...
    • How to export a host screen to Microsoft Word

      A macro can be used to "scrape" the data from the current Flex Terminal Emulator host screen and export to a Word document. The sample macro code below demonstrates this: Sample Code: Sub Main() ' Create the Word objects Set objWord = ...
    • How to apply or update the Flex Terminal Emulator license code

      The license code can be applied or updated thru the Flex Terminal Emulator Workspace or via the FlexLicense.exe application located in the Flex Terminal Emulator installation directory. Updating thru the Flex Terminal Emulator Workspace: Open the ...
    • How to export a host screen to a new Outlook email message

      A macro can be used to "scrape" the data from the current Flex Terminal Emulator host screen and export to a newly created Outlook email message. The sample macro code below demonstrates this: Sample Code: Sub Main() Dim outobj, mailobj ' Determine ...
    • How to export data from several host screens to cells in an Excel spreadsheet

      A macro can be used to "scrape" specific table data from the current Flex Terminal Emulator host screen, export to cells within a newly created Excel spreadsheet, then repeat this process to traverse multiple host screens. The sample macro code below ...