Lotus Domino, LotusScript - Barcodes in projects Using the barcode control in a LotusScript agentThis is a script example to run under IBM's Lotus Domino as a LotusScript agent:
Option Public Option Declare
Sub Initialize() Dim MyObject As variant Set MyObject = CreateObject("BARCODE.BarcodeCtrl.1") MyObject.text = "Example" MyObject.typename = "Code 128" MyObject.SaveAsBySize "c:\example.bmp", 400, 100 End Sub
|
|
Read more descriptions of how to add barcodes to
standard applications (e.g.
Office,
Excel,
Word,
Access forms,
Access reports,
PowerPoint,
OpenOffice.org,
Lotus Notes,
Publisher,
Freelance,
Freehand MX,
Image Editors,
WordPad,
etc.)
|
|