by dLSoft - 상품타입: Component / DLL
주의 : 이 제품정보에는 한글안내가 포함되어 있지 않습니다.
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.
일반 적인 소비자 가격은 하기에 표시되어 있습니다. 고객님의 할인가격은 표시 하시려면 로그인 해주시기 바랍니다.
| 주문 | ₩ 308,300 | 1 Computer License | 다운로드 (6.6 MB) | |
| 주문 | ₩ 925,000 | 1 Developer License | 다운로드 (6.6 MB) | |
| 주문 | ₩ 123,300 | 1 Computer License - Upgrade from previous version | 확인 | 다운로드 (6.6 MB) |
| 주문 | ₩ 370,000 | 1 Developer License - Upgrade from Multi User previous version | 확인 | 다운로드 (6.6 MB) |
가격에는 ComponentSource의 기술지원 요금이 포함되어 있습니다. 또한 다운로드 판매를 하고 있는 상품의 대부분은 온라인 백업요금이 포함되어 있어서 구입날로부터 30일 이내에 새로운 버전이 발매된 경우 무료로 업그레이드해 드리고 있습니다. 모든 주문에 대해서 당사표준 계약조건 및 반품조건 의 내용이 적용됩니다. 다음의 경우,고객 서비스로연락하시기 바랍니다. (상기의 리스트에 게재되지 않은 대량의 라이센스나 구 버전 등의 라이센스 옵션이 필요한 경우)
일반 적인 소비자 가격은 상기에 표시되어 있습니다. 고객님의 할인가격은 표시 하시려면 로그인 해주시기 바랍니다.
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$