Posts

Showing posts from November, 2009

Barcode Video Channels on YouTube

Hello there! This post summarizes the available video playlists for barcode software from TEC-IT on YouTube. Barcode Label Printing Software (English) Content: Tutorial videos for TFORMer Designer. Barcode label printing with TFORMer Designer Barcode Label Printing Software (German) Content: Tutorial videos for TFORMer Designer. Barcode-Etikettendruck mit TFORMer Designer Barcode Generator Component (English) Content: Tutorial videos for TBarCode. Using Barcodes in Microsoft Office / Microsoft Word Creating Serial Letters with Barcodes Please check out the TEC-IT Barcode Software channel on YouTube on a regular base. More videos are coming soon - we are producing... ;-)

Barcode Generator for SQL Reporting Service

Image
To generate bar codes (ALL barcodes - meaning linear barcodes, 2D barcodes like DataMatrix and GS1 DataBar codes) all you need is an internet connection. Advantage: no additional software is needed and no Visual Studio is required. The basic idea is to insert an barcode image generated by the online barcode generator of TEC-IT. This barcode generator is customizable via the URL - so it is possible to create each bar-code as required. 1) Create the required barcode using the online barcode generator 2) Scroll down to the section "Free Use of This Barcode Generator". Copy the URL (see screenshot below) into your clipboard: 3) Start the MS SQL Server Report Builder 4) Create a new report 5) Insert a Picture object and change the “Image Source” property to “External” (see screenshot below) 6) Click on the “fx” button to set the URL for the barcode image (see screenshot below) Function used in the example above: =”http://www.tec-it.com/online-demos/

TWedge V2.3 Release Candidate

Image
We are announcing the new version of the data acquisition software / software wedge TWedge. TWedge is smart middleware which connects to arbitrary devices via RS232 (COM port), Bluetooth (native!) and TCP/IP. The received data is either simulated as keystrokes , stored in a file or saved directly into an ODBC database . Improvements 0-byte awareness Previous versions clipped received or transmitted data after an 0x00 in the data stream. HEX data display Incoming data can be displayed as HEX string for better debugging Silent mode Device data display can now be turned off Release Candidate Download Download data acquisition software TWedge (MSI setup file for Windows).  Technorati Tags: Database Wedge , software wedge , keyboard wedge , daq , aidc , barcode wedge , BlueTooth Wedge , Data Collection Software , Data Capture Software , TWedge , TEC-IT

Reading RFID Tags with TWedge

Image
TEC-IT's data acquisition software TWedge allows an easy implementation of RFID controller protocols. TWedge can be adjusted to communicate with RFID controllers in a bi-directional way. Reading and processing tag identifiers is as easy as reading/writing tag data! The following TWedge script can be used to read RFID Tag IDs from EMS Datalogic RFID Controllers (utilizing the ABx Fast Protocol). The following script performs the following functions: 1) Query the RFID controller by pressing the hotkey 2) When data is received test it for a valid response 3) Display data in MessageBox Try it yourself - Download the software wedge for free ! Keep in mind: V2.3 or higher is required! Global Helper Functions HEX Conversion function encodeHex(input) { hexOutput = ""; for (i=0; i < input.length; i++) { hexOutput = hexOutput + ' ' + Dec2Hex(input.charCodeAt(i)); } return hexOutput; } function encodeDec(input) { decOutput = "";