Only One Barcode Name Can Exist Per Asset Please Select Unique Barcode Names and Save Again

ActiveBarcode FAQ

Office 2007,2010: I tin no longer edit or change the barcode once I close the fileLink

I created a document with the control, I relieve information technology, reopen it and I can no longer edit or modify the barcode.

This has something to exercise with the security settings of your Office, Excel, Admission or Word installation. The ActiveX component is blocked by the security settings when opening the file.
Y'all can change this by openning the document from a trusted location:

1. Click the Microsoft Function Push button and then click on teh Options button.
2. Click Trust Center, click Trust Center Settings, and so click Trusted Location.
3. Add the path of your document file to the trusted locations.

Black Box instead of a barcodeLink

I embedded your control in a form and I get a blackness box instead of a barcode?

Your developing environment selected bad default colors for our control. But customize hte command past yourself and set the background colour (Backcolor) on white (clWhite). This volition solve the problem.

License is non accustomedLink

Unfortunately, nosotros apply the full version and go an fault bulletin that nosotros lack the license?

If you receive an error message under Access after yous installed the full version and the license files, this is because Access did non recognize the change of the license from the Trial version to the full version.

In this instance it is necessary, to remove all barcode control elements from the database that were created with the Trial version. Then close Access and launch it once again. Now insert the barcode controls back into the database. Be sure that y'all take installed the developer license correctly earlier doing this.

True Type fonts? ActiveBarcode is better!Link

I am searching for a true type font to display barcodes. Tin you help me?

Yeah and no. A barcode true type font is not what we can offer because this is only a static solution with restricted apply. With a true type font automatic check digits are not possible and binding to a database seems to be impossible. Our solution uses a much more powerful style: The barcode is displayed by the ActiveBarcode control and then it offers you many more features than a static barcode true type font.

Windows 3.ten:Link

Is there a 16-fleck solution available?

No, ActiveBarcode is not available for 16-chip Windows. ActiveBarcode volition not run on Win3.10. You lot'll demand a newer Windows version in society to use ActiveBarcode.

Supporting SoftwareLink

What programs work with the ActiveBarcode command?

All programs that support OLE 2.0 and all programs that explicit support ActiveX controls similar Access, Excel, Word, Internet Explorer, FrontPage, Visual FoxPro, Visual C++, Visual J++, Visual C#, Visual Bones, Visual Basic for Applications (VBA), PowerBuilder, Delphi and many more.

FNC1 with EAN-128, GS1-128, UCC-128Link

How practise I set the FNC1 character that is required for some Application Identifiers in EAN/UCC 128?

Select the barcode type "EAN/UCC 128 AI". If you now enter <FNC1>, ActiveBarcode will code this as FNC1 control code.

If you are using "Code 128" or "EAN/UCC 128" you can code the FNC1 by using ASCII grapheme 242.

Saving Bitmap filesLink

My main objective is to have the barcodes that I've generated and salve them as .bmp files. I'1000 using Visual Basic. Tin can you help me?

Yes, simply use the methods SaveAs, SaveAsBySize or SaveAsBySizeExtended.

If you want to alter the bitmap before saving, use the Picture belongings to retrieve the image.

Code 39 ExtendedLink

I'one thousand trying to impress CustomerID in BarCode course using Code 39 Extended. At time, the barcode will be printed, simply at time information technology merely simply show the word "size"!?

The trouble is that if you use several characters (eastward. g. small messages) that are non included in Lawmaking 39 but in Code 39 extended, the character is made of ii symbols in the barcode, which tin increment the effective width of the barcode. Y'all should increase the width of the barcode in the way, then the maximum code length your require will fit into the control to avert bug.

Using the commandLink

How do I employ ActiveBarcode control with Word, Excel or Access?

Please have a expect at our 'Examples' section. There you'll find many step-by-step instructions that will help you. You can solve nigh all problems and automate tasks with ActiveBarcode and Visual Basic for Applications (VBA).

{Command ACTIVEBARCODE.BarcodeCtrl.\s}Link

The command is non visible and it displays {Command ACTIVEBARCODE.BarcodeCtrl.\due south}

This is because of your options setting in Word. Get to the options dialog of Discussion. Then have a look for the option "Field functions" and fix this one to "not checked".

Mail merge with ActiveBarcodeLink

I desire to add together a barcode to my mail merge. How can I bind a data field of my control data to ActiveBarcode?

Yous have to employ a macro to print your postal service merge. This macro has to make the binding. The post-obit case shows how you can do this. Have a expect at the name "Productcode". This is the proper noun of the data field bound to ActiveBarcode in this instance. Please supervene upon with your data field name.

                    
Sub MailMerge_example_with_ActiveBarcode()
'
' MailMerge_example_with_ActiveBarcode Makro for Word2000
' (c) 1999 by Frank Horn
'
' Macro shows how to print barcodes in a mail merge.
if MsgBox("Do you want to print mail merged documents?", vbYesNo,
"Question") = vbYes Then
'counter to zero
num = 0
'start record is number i
ActiveDocument.MailMerge.DataSource.ActiveRecord = ane
Do
' Make full ActiveBarcode text belongings at present
ActiveDocument.Barcode1.Text = ActiveDocument.MailMerge.DataSource.DataFields("Productcode").Value
' practise non prompt for printing...
Options.PrintBackground = True
' print page
ActiveDocument.PrintOut
' recognize old record
lastone = ActiveDocument.MailMerge.DataSource.ActiveRecord
' select next record
ActiveDocument.MailMerge.DataSource.ActiveRecord = wdNextRecord
'count
num = num + 1
' check if at that place are new ones
Loop While ActiveDocument.MailMerge.DataSource.ActiveRecord <> lastone
' notify user
MsgBox (Str(num) + " pages printed!")
End If
End Sub

To start press, launch this macro. Otherwise the barcode will not be updated.

At that place is a case file available in our download department.

Discussion labels or tables make bug?Link

I want to add a barcode object to a label or a table. The problem is that I cannot position information technology inside the table or the characterization. The barcode always "jumps" to the outside. How tin I ready this problem?

If you add together a barcode to a document the default for the "over the text" option of objects is always enabled. If this choice is enabled you cannot position an object inside the tabular array or the label. To fix this trouble you have to disable this pick. Click the object with the correct mouse button and select the function Object format... A dialog will appear. Delight select the "Position" tab and y'all'll see the "over the text" property at the bottom of the options. Disable this option and click Ok. At present the barcode is movable into the table and/or label.

The barcode or it'due south film property does not refresh or doesn't have any informationLink

I get an error stating the picture property is not set and does not contain whatsoever data notwithstanding.

If you utilize the flick belongings in time disquisitional or batch loops, y'all have to give the windows system enough time to practise it'south events. E.k. in VBA you use 'DoEvents'. This guarantees that the motion-picture show property is correctly gear up with information. Alternatively yous can try to use the 'CreatePictureBySize' method before using the picture holding.

Rotating the BarcodeLink

I would like to know if this control allows modify orientation of the barcode (rotation)?

Yeah, please have a wait at the property "Rotate".

Do you have an example for .... ?Link

I am using the software ... and want to use ActiveBarcode. Tin can you assist?

Please have a look in our 'Examples" section. There you observe a whole agglomeration of step-by-step instructions. If yous don't see your software, yous may enquire united states by email, but exist enlightened that nosotros cannot know all the software that is available.

Kickoff, delight take a look into the manual of your software for data about how to use an ActiveX Control and if it meets your requirements.

Crystal Report information boundenLink

We try to employ your control with Crystal Report and Visual Basic for usage on a report. Nosotros tin add together the control als OLE object, just we cannot link a property with a database?

You demand to make the data binding manually from your Visual Basic program. Every bit far as we know, Crystal Report cannot do this automatically.

Temporal limitation?Link

Does a temporal limitation for the use of ActiveBarcode exist? Does the license need to be renewed any time?

No, the use of the software is not delimited in time.

New lic fileLink

IF there is a new version and with it a new LIC-file available: What does this mean for the programs I take compiled since and so with the older LIC-file?

ActiveBarcode is fully backward compatible - this means that your older programs (exe-files) that you have compiled with an older LIC-file will run without problems together with the new ActiveBarcode control. You do not need to recompile them. But if you want to use the new ActiveBarcode version for development or if y'all take used ActiveBarcode together with the LIC-file (for example for Access97 applications), yous will demand to update to the new LIC-file because the old license does not allow yous to run the new version in this manner.

Microsoft Publisher 98 and laterLink

Can I insert an ActiveBarcode object to my Microsoft Publisher document?

No, Microsoft Publisher Version 98 or afterwards is non an ActiveX container and does non permit to insert an Active Barcode object into a certificate.

To add together a barcode to your certificate it's the all-time fashion to use our ActiveBarcode Generator.

Microsoft Publisher 97Link

Can I insert an Active Barcode object to my Microsoft Publisher 97 certificate?

Using Version 97 you can insert an Active Barcode object to your certificate, though Version 97 is also non an ActiveX container. And so the ActiveX object is non correct supported and you the object volition prove a strange characteristics. Every time you change a setting of Active Barcode the position and size will be changed randomly. Just you can handle this. First edit the barcode. Click the barcode with the right mouse button -> Agile Barcode Object -> Properties and change the settings every bit you like. Later on doing this the barcode object volition change the position and resize randomly. Now gear up the size of the object by "correct mouse button" -> Resize Object. This function will work in opposite to the straight size change without issues. Terminal move the barcode to the position on the document you lot like. Even if this works, we recommend to use our ActiveBarcode Generator to add barcodes to your Publisher documents instead.

Manually install the commandLink

I am a developer an want to install the control manually on my target system. How do i do this?

You can use regsvr32.exe (this should exist on your system) to register the command manually. Launch regsvr32.exe activebarcode.ocx and the control will be registered to the target organization.

Failed installationLink

ActiveBarcode install failed?

If yous encounter errors during the install routine transport a bug report by Email. Please be sure to install the latest version of ActiveBarcode. The install-routine provides y'all with detailed info if there were whatever bug. This info volition assistance us to help y'all.

Scaling the BarcodeLink

Why is information technology not possible to scale arbitrarily to become barcodes of any size between min and max sizes? When I scale the control, the content of the control - the barcode - does not scale continuously

The control itself may be scaled to any size you demand. Just the content of the control - the barcode - has to be readable by a scanner. Then information technology has to follow some rules which exactly say what size the single bars and spaces must have. This is why you can scale the barcode to whatsoever summit because this does non effect the width of the bars and spaces of the barcode. Simply if you lot change the width of the control, ActiveBarcode displays the largest right (in the significant of not breaking the rules) barcode that is possible inside the controls dimension. And then you tin can sometimes see that if you resize the control it does not modify the barcode itself. You have to resize information technology once more (brand it wider) to change the barcode, as well. Sounds confusing? If yous resize the control you will sympathise what I am trying to say <one thousand>.

Alter the homo readable text lineLink

How tin can I change the format of the text line under the barcode?

If you want another text line format for a barcode yous can use the ShowText Property to deactive the text line under the barcode by setting it to false. So you can create your own textline manually in the format you crave with your software.

No modification possible?Link

I try to change the barcode but zilch happens! I tin can't fifty-fifty motion or resize it. Whats wrong?

To change the barcode you must be in blueprint fashion. Use this button:Design mode to switch to design mode. Then you'll exist able to modify the barcode by clicking the barcode with the correct mouse button.

Additional barcode typesLink

Is at that place a way to add together other barcode formats or types?

No, you lot cannot add together a barcode blazon to the control for yourself.

Often barcodetypes are subtypes of already existing types and ActiveBarcode is already supporting your needed type. Have an eye on this!

Yous as well can ask u.s. to implement a new barcode type. We will then make you an offer for this.

Licensed version can't be compiled by Delphi to an EXELink

I take licensed the ActiveBarcode control, but I nevertheless can't compile my Delphi project: I become an exception about the License info!?

Please remove the ActiveBarcode control from your development environment and add it again into it after y'all've licensed the control. Otherwise the evolution environment may non notice the modify of license.

Barcode does non change in the pic propertyLink

I utilize ActiveBarcode with Delphi. iii.0 in a database. First I open up a dataset and print the barcode. This works fine. Now I exercise this again with another dataset and now the same barcode is printed. I'm using the flick belongings for printing.

Please add the post-obit line of code to your projection exactly before you create a new barcode:

                    Barcode1.Picture show.CleanupInstance;                  

Code 128 Command CharactersLink

How can I use control characters like TAB or CR?

You can use control characters equally plainly text within angle brackets. Further information and a listing of the command characters can be constitute here: How to use command characters

CommitmentLink

How is ActiveBarcode delivered? Electronically or past mail?

It'due south delivered electronically.

Commitment fourth dimensionLink

How are your delivery times?

Generally we deliver on workdays within 24 hours. Depending on your payment method it also may accept longer.

PaymentLink

Which payment conditions exercise you offer?

Nosotros work with MyCommerce Share-It. They offering different payment options for every country, due east.g. credit carte du jour.

UpgradesLink

I have purchased the Standard Edition and would like to upgrade to the Enterprise Edition. Is that possible? What does it price?

Yeah, it'south no problem. Delight read our instructions at Software upgrade.

Return policyLink

Can I return the purchased full version within a certain time catamenia, e.g. considering the software does not fit my needs?

No. We provide a free trial version of ActiveBarcode to prospective customers. You can download this free of accuse and without obligations from our download area. This test version is non limited in any functions. The trial version works like the Enterprise edition. You lot can test all features of ActiveBarcode.

Nosotros encourage you to evaluate our product prior to buy in order to make up one's mind whether the product are suitable for your needs.

Because we offer an evaluation license every bit described above, we practice non accept the return from licenses or software products.

Mac OS XLink

Practice you also offering a barcode to software for macOS?

No, unfortunately, we offer no software for macOS.

You tin can run Windows applications with VMware Fusion under macOS. The ActiveBarcode Generator can be used this manner. So, if you own a Windows system, yous can create the needed barcodes as image files (e.thou., TIFF, gif, PNG, WMF, EMF) with ActiveBarcode and apply them on your macOS system.

Too small text line in a reportLink

The problem I have is that when I see a preview or print a study in MS Access, the numbers beneath the code appear very very small.

In Admission a report is designed in a lower resolution (pixels per inch) that it is using while printing. So information technology is required that you create the barcode command with a much bigger font size than you would unremarkably use. Otherwise the text line nether the barcode may be very very small in your print. And so modify the font size for the text line (font.size property of the control) to a much bigger size even if the barcode control may display a size fault in pattern fashion.

Modify barcodes content automatically before printing:Link

We would like to add a barcode to our letters. This barcode should exist automatically added into every alphabetic character. How does this go?

You beginning add together the ActiveBarcode control element into your document. Position the barcode by your wishes and ready the bones properties as for instance the type and the font size.

You notice tips to insert the control element in a Give-and-take document in our examples: /howto/word.html. On this folio you also find a link to a Flash video.

To automatically update the barcodes content before printing we use a VBA macro:

                    Private Sub SetBarcode()
'Set the barcodes content (text property)
Barcode1.Text = Engagement
Finish Sub

Sub FilePrint() ' replaces normal printing via dialog
' Sets the barcode content before press
SetBarcode
' Now launch printing:
Dialogs(wdDialogFilePrint).Show
Stop Sub

Sub FilePrintDefault() ' replaces defualt press (no dialog)
' Sets the barcode content before printing
SetBarcode
' At present launch printing:
ActiveDocument.PrintOut Background:=False
Stop Sub

In the function "SetBarcode" y'all tin can customize the contents of the barcode according to your wishes. In this example the current engagement is simply encoded. Here y'all tin can change the text holding to other unmarried or chemical compound data.

Both procedures "FilePrint" and "FilePrintDefault" intercept the printing process, both telephone call "SetBarcode" and continue the printing process.

DistributorsLink

Practise you accept a distributor in...?

Nosotros're sorry not. You lot only can buy our barcode software directly from the states or MyCommerce Share-It.

Code 39 bank check digitLink

I'grand trying to use a Code39 BarCode of 14 characters plus a final control digit (with the Mod43 algorithm). How tin can information technology be obtained in this source?

Simply select the barcode Type "Lawmaking 39 Checksum" (Type #26) instead of "Code 39" (Type #06). The control digit (Mod43) will then be attached automatically.

Macro: Calculation the control:Link

How tin can I create the barcode command using a VBA macro? For example to place a barcode on a document.

Use the following code to create a barcode at the cursors position:

                    Set ab = Option.InlineShapes.AddOLEObject(ClassType:="ACTIVEBARCODE.BarcodeCtrl.1",
FileName:="", LinkToFile:=False, DisplayAsIcon:=False)

To access the standard properties, yous can apply the variable ab now:
e.g. ab.width=200

To access the controls backdrop and methods, you take to do the following:

                    With ab.OLEFormat
.Activate
Gear up abobject = .Object
End With
abobject.Text = "987698769812"

Now you tin can access the backdrop using the abobject variable.

Scanning FNC1 with GS1-128, EAN-128, UCC-128Link

When I create a barcode with or without the FNC1, the scanner returns a precisely identical character string back. In this character string my software cannot recognize where the finish of a variable data length is. Tin can y'all aid?

To get the control graphic symbol FNC1 of the scanner transmitted, the scanner must this back up this functionality. The FNC1 ordinarily has but internal significant in the Code 128 (which is the base of operations of the EAN128) and will not transmit correctly. The scanner must offer the option, to transmit the FNC1 in EAN-128.

Installation without Internet AdmissionLink

Are there problems if I similar to install the program on a system without Internet access?

No.

License by new installationLink

Licenses of some software products often are bound to a PC so it can come to problems when a new installation may be required. How is that with ActiveBarcode?

Y'all exercise not accept such problems with our software. The licenses are non bound to a PC. Our software must be also Non be activated on the Internet or by telephone.

What about the () in GS1-128, EAN-128, UCC-128Link

Are the clips of the data identifiers taken over into the barcode? e.g. (10). If I read this with the scanner they are not displayed. Is this right?

The clips are non included in the barcode. The clips serve only for the legibility of the plain text line. The code itself may not contain these clips.

lawmaking 128, GS1-128, EAN-128, UCC-128 check digitLink

Where can I switch off the check digit for Lawmaking 128?

The bank check digit of the Code 128 is a component of the lawmaking and cannot be switched on or switched off. The code in itself would not exist valid without the internal check digit.

Automatic size change?Link

Because we translate client numbers to barcode, it is non always possible to know the exact lenght of the lawmaking. I sometime get a Size Fault. Is it possible to auto size the barcode?

An auto size option is not available now. Simply you have 2 possible solutions for this.

Showtime is to always create a bigger paradigm. ActiveBarcode always creates the largest barcode that is possible into the dimensions of the paradigm. And so create a huge bitmap for the barcode and you'll always receive a correct barcode in the best size for that image. If you create a small barcode with less numbers the barcode volition be enlarged to fit best into the image size.

Second is to use the "IsSizeOk" property. You lot can set up the barcode dimensions then inquire the belongings "IsSizeOk" if the barcode fits into this dimensions. If you get true, the size is good, if you become false you accept to overstate the prototype. Practice this in steps until you get true and you have the needed size.

Size ErrorLink

The command is displaying "Size Fault". What does information technology hateful?

This error says that the barcode cannot be displayed at this resolution. Enlarge the controls size.

Text MistakeLink

The control is displaying "Text Error". What does it mean?

The "text Error" message says that the value which you would like to encode as a barcode does not fit to the selected barcode symbology. E.g. you try to encode messages in a numeric barcode such as EAN-13
Solution: Select a suitable barcode type (e.1000. Lawmaking 128) that allows letters or alter the text that it is valid for the selected barcode type (i.e. for EAN-13 the number of digits has to be right and if you enter the check digit, information technology must be right, too).

Image filesLink

Can I use the images files that I have created with the ActiveBarcode Generator under Windows on a MAC?

You can save the barcodes as epitome files with the ActiveBarcode Generator. This goes in many standard formats, similar TIF, gif, BMP etc. You can utilise these files without issues on other systems (east.g., Mac).

Local shopsLink

Can I purchase ActiveBarcode at my local store?

The software ActiveBarcode is not available in local shops. ActiveBarcode is only available directly from usa or MyCommerce Share-It.

UniscanLink

Ane of my customer asked me some info almost Uniscan. Exercise y'all know something nearly this lawmaking?

UNISCAN is the Russian federation EAN Coding Authority. Your customer may call an "EAN 13 with a prefix from 460 to 469 (Russian Federation)" as Uniscan.

A3 formatLink

How is it possible to fix up an A3 page for labels with the ActiveBarcode Generator?

The paper format is determined by the printer (driver). Select the function "Printer SetUp" from the menu "Printer". Select your printer which tin can print to A3 hither. Set the papersize to A3 in that location. Now yous take ready the desired paper size and y'all tin fix the characterization canvass.

Trial versionLink

I have tested the trial version. At present it shows that it's expired. What tin I practise?

The trial version has expired. Y'all demand to buy a license. You can choose from different options. In one case a license is installed, the expired warning will disappear. Or you can uninstall the software from your organisation (Windows control panel-> software) at any fourth dimension.

Extend the test periodLink

My trial pahse has expired. Can you extend it?

Unfortunately, the trial period cannot be extended for technical reasons. However, you could install the software on another computer and showtime a new trial menstruation and try out again whether ActiveBarcode meets your requirements.

EAN numbers, production lawmakingLink

I am a first fourth dimension user that requires barcodes for one of my products that will need to be scanned at shops. Where do I get the EAN numbers?

If yous want to use this barcodes on your products you will need an unique code. Each country has a coding authority (or numbering clan) which assigns codes to manufacturers and maintains a central database. The EAN arrangement is under the overall direction of the International Commodity Numbering Association, based in Brussels, Belgium. Each state using the EAN system maintains a separate Commodity Numbering Association.

Light marginsLink

I do have a barcode on my product and I practise not know how much space do I demand effectually it. Can you lot tell me?

These borders are called calorie-free margins. This white area must be wider than each white space within the barcode and as well wider than each black bar in the barcode. So have a look at the wides black and/or white office and make the white border a fleck wider than this. Then it should fit.

Change the barcode text with a VBA macroLink

How tin can alter the coded text of the barcode inside a VBA macro?

Apply the post-obit control to modify the coded text:

                    ActiveDocument.Barcode1.Text = "[HierZeichen/ziffernfolge eingeben]"                  

The barcode does not change in serial press via VBALink

I would similar to impress barcodes in a loop with sequential numbers. On the screen the barcode is always right, but in the print the serial number is non taken over. What tin can I do?

It seems the barcode is non updated. This may be a timing issue. You lot can make Excel to draw a new barcode by simply manipulate it, e.yard. the size:

                    
Temp = Barcode1.Width
Barcode1.Width = 10
Barcode1.Width = Temp

Well, this only reduces the size of the control and the set it back to the original values. This forces Excel to redraw the control, and it is done correct. USe this code directly before your print control.

Barcode in a prison cellLink

I want to place the barcode into a cell and not every bit a drawing.

As far equally nosotros know, Excel cannont place a control into a cell.

But you lot tin can position the control exactly over a cell. This has the same effect. You can practice this manually or apply a macro for this:

                    
' get cell size
MyHeight = Range(CurrentCell).Height
MyWidth = Range(CurrentCell).Width
MyTop = Range(CurrentCell).Top
MyLeft = Range(CurrentCell).Left

' extend cell superlative to 30px, change if you like
Range(CurrentCell).RowHeight = 30

' embed the control at the cell location
ActiveSheet.OLEObjects.Add(ClassType:="ACTIVEBARCODE.BarcodeCtrl.ane", Link:=Imitation _
, DisplayAsIcon:=False, Width:=MyWidth, Height:=30, Top:=MyTop, Left:=MyLeft).Select

Distibuting a runtime Admission databaseLink

You indicate that EXE files with your ActiveBarcode may be distributed without royalties. Does that as well count to run-time versions of MS-Access?

Starting with Admission 2000 this is possible equally the license information is stored in your Access database. If you distribute your database without the license file no other royalties are due.

Security messages while opening Role 2003 documentsLink

I receive security messages when opening Word or Excel documents nether office 2003. Is there another possibilityto change this than lowering the security level?

Unfortunately, at that place is no so elegant solution for Office 2003 as for example for Part in 2007 with the trusted locations. Notwithstanding, information technology is possible to end the query in general for ActiveX controls in Office 2003, by inserting a key into the Windows Registry. Please note, that this solution is not only for our control but for all ActiveX controls. You would receive this warning also no longer with foreign controls!

Der Registry Eintrag lautet:
[HKEY_CURRENT_USER\Software\Microsoft\Function\Common\Security]
"UFIControls"=dword:00000001

If you liked to comport out the change, delight note that the update of the Registry e'er has a certain danger. We recommend you, to perform a data abckup earlier the intervention in the Registry.

Installation without user interactionLink

Is is possible to setup ActiveBarcode in a silent mode, and then that no user interaction is needed?

Yep, that is possible. If yous start our installation with the parameter /silent, no user interaction is necessary and if yous instead utilise /verysilent information technology volition be additionally done without any screen display.

Generator: Entering command codesLink

How can I enter control codes, like a Return?

Switch on the option "Allow control codes" inside the "Options" menu. Now you can enter some control codes in homo readable form. Blazon the control characters within pointed brackets: <CR>, <LF>, <TAB>, <ESC>, <DEL>, <BS>, <VT>, <FF>, <FNC3>. If you need other control codes, y'all tin enter the ASCII value of the needed character as three digits within pointed brackets, east.1000. <065> for A or <026> for EOF.

Object, OCX, Control: Entering control codesLink

How can I enter control codes, similar a Render?

You tin can use control characters as plain text inside bending brackets. Farther information and a list of the control characters tin can exist institute hither: How to use command characters

Excel: Entering control codesLink

When using Excel with your barcode object - how can I enter control codes, like a Return?

Using the barcode object, you capture command codes directly by the corresponding ASCII character. So, you need to create that character directly in Excel. For this yous use the function CHAR() inside your cell. To map a Return (ASCII xiii) the cell content might wait like this:

                    ="Any kind of Text"&CHAR(13)                  

Evolution environment: license issueLink

I utilise an Enterprise Edition and my evolution environment tells me near a missing license for the barcode object. This may happen at blueprint fourth dimension or while distributing yous program.

Oft a development environment like Delphi, Visual Studio or VB6 does not recognize the change of the license from the Trial version to the full version. This is because the license data in shop while adding the object to the development environment. In this instance, it is necessary to insert the command once again.
Please examine first whether you installed the programmer license file on the evolution computer correctly. If not, practise this now.
Now you start your development environment. Do non open your project. At present remove the control from the Toolbox. Best is to shut and restart Visual Studio now. After the restart you insert the control back into the Toolbox. Now the right license information will be stored in the development environment and you lot tin open your projection again and finally compile information technology with the correct license.

Error: api-ms-win-crt-runtime-l1-one-0.dll non installedLink

I get an fault bulletin that says that I can't use ActiveBarcode cause the file 'api-ms-win-crt-runtime-l1-i-0.dll' is not installed. What can I do?

Your Windows organisation seems not to be up to appointment. The missing file should take been installed by an before Windows-Update. To solve this problem, please launch Windows-Update and setup the latest updates.

Multi-user organizationLink

What is important when installing on a multi-user system?

The installation for the barcode object and the barcode generator is system-wide. All users can access these two components of ActiveBarcode. The Excel Add together-In is merely installed for the active user. If you want to install an add-in for boosted users, delight run the installation over again for the corresponding user.

HIBC CodeLink

How can I create a HIBC code?

The HIBC lawmaking is currently not offered natively by ActiveBarcode. Since the HIBC data construction is symbology independent, all mutual codes such as Lawmaking 39, Code 128 DataMatrix and QR code are suitable. Y'all can therefore create a HIBC code with ActiveBarcode if, for instance, yous utilise DataMatrix and fix the user information according to the HIBC notation and shop it using the "Text" command belongings.

pleasantsbagall.blogspot.com

Source: https://www.activebarcode.com/faq/faq.html

0 Response to "Only One Barcode Name Can Exist Per Asset Please Select Unique Barcode Names and Save Again"

Post a Comment

Iklan Atas Artikel

Iklan Tengah Artikel 1

Iklan Tengah Artikel 2

Iklan Bawah Artikel