par dLSoft - Type de produit : Composant / DLL
Veuillez noter que les informations sur les produits ne sont pas disponibles en français.
Single barcode font which can be used to create barcodes for most 1D barcode types. The Universal Barcode Font Kit provides a versatile way to create barcodes from within any application written in a programming language that supports accessing a DLL, OCX or UFL, and supports most barcode types including 2 of 5, Code 39, Code 128, EAN, UPC, ISBN, PostNet, RM4SCC and more. The tools translate data into a form which may be displayed or printed in the barcode fonts, which are provided as TrueType, OpenType and PostScript fonts in three different weights and five height/width ratios. Includes samples for MS Office, VB, VB.NET, C#, Crystal Reports and Delphi.
Nos prix standard sont montrés ci-dessous. Veuillez vous connecter pour voir vos prix.
| Ajouter au Caddie | $ 265.96 | 1 Computer License | Téléchargement (6.6 Mo) | |
| Ajouter au Caddie | $ 797.89 | 1 Developer License | Téléchargement (6.6 Mo) | |
| Ajouter au Caddie | $ 106.39 | 1 Computer License - Upgrade from previous version | Vérifier | Téléchargement (6.6 Mo) |
| Ajouter au Caddie | $ 319.16 | 1 Developer License - Upgrade from Multi User previous version | Vérifier | Téléchargement (6.6 Mo) |
Nos prix comprennent le support technique ComponentSource et, pour la majorité des produits téléchargeables, une sauvegarde en ligne ainsi qu'une mise à niveau GRATUITE si la nouvelle version est parue pendant les 30 jours consécutifs à votre achat. Toutes les ventes sont sujettes à nos Termes et Conditions standard à notre Politique de renvoi. Veuillez nous contacter si vous avez besoin d'une option de licence (licence de volume et versions précédentes) qui ne figure pas sur la liste ci-dessus.
Nos prix standard sont montrés ci-dessus. Veuillez vous connecter pour voir vos prix.
What's new in V4.x?
What's new in V3.1?
What's new in V3.0?
What's new in V2.11?
The font is not designed for use without the DLL. The font produces ONLY bars and spaces. It does NOT produce text under the bars, bearer bars, or elongated start, stop and centre bars.
The DLL supports the following barcode types: 2 of 5, 3 of 9, Code 39, Code 93, Code 128, Code B, Code 11, Codabar, Deutches Post, DUN-14, EAN-13, EAN-8, EAN128, I-2/5, ISBN, ISSN, JAN, UPC-A, UPC-8, Matrix 2/5, MSI, Plessey, SISAC/SICI, Telepen
Sample VB code:
Declare Function BarCdf Lib "dlunif" (ByVal szIn As String, ByRef n As
Long, ByRef Code As Long, ByRef fl As
Long, ByRef szOut As String) As Long
Flags = 0
Code = 8
sz$ = String(1024, vbNullChar)
so$ = String(8192, vbNullChar)
sz$ = Text1.Text
tt = Len(sz$)
n = Bar2Dpdf(ByVal sz$, tt, Code, Flags, ByVal so$)
Text2.Text = so$