Skip to main content

How to create barcode using barcode font in excel

The purpose of creating barcode is clear which is for more than one items to be read later either for searching items or inserting an item into a system like supermarkets, then for this purpose, we need an application to generate barcode for us or online websites which is either it's not free or generate barcode one by one which takes a long time,

Creating such a function by Microsoft excel or any kind of sheet apps is cheap and fast and accurate all you need to have is 
  • barcode font (you can find dozen of barcode font online)
  • Microsoft Excel
After you installed the font 
insert the serails or asset name or whatever you want to make it barcode into the excel column and apply this function to the cell next to the serial 

="*"&[cell reference]&"*" 

then hit the enter and you have to change this cell font to the barcode font and apply this function to all coming cells.  

Comments

Popular posts from this blog

ACRONIS TRUE IMAGE RECOVER

ACRONIS TRUE IMAGE when you take an image from a window with Acronis true image you have to plug in the external hard drive that you have your image in and also put the disk of Acronis true image, and boot from it and follow the following steps: 1- 2- 3- 4- 5- 6- 7- 8- 9- After when you click the proceed it starts to recover your token image.

How to Manually remove a virus from your computer

This guide focuses on manually removing viruses and malware from your computer. Step 1: Press the keys [Windows] + [R] to open the windows run. Type msconfig then press enter  Then look for suspicious files. Here we see one. It’s an unknown manufacturer, and it also has a startup key that we’ve never seen until recently. Uncheck it from startup and/or from services. If you think you are being monitored. Open Command Prompt and do the following Step 2 Boot into safe mode. This can be done by checking the box in the “boot” tab in msconfig. Step 3 Run msconfig in safe mode and we can see it’s checked because the virus is persistent. The virus will not be running, however, due to the fact that we are currently in safe mode. Step 4 Navigate to the registry. We are doing this in safe mode because some viruses disable the registry. Note: Be sure your folder options are set to show hidden files and folders Step 5:Navigate to the location of the virus. If...

Java Object Serialization

Java has a way to covert its object to binary form which called java serialization, then write it to a file  under any extension you want  this means you can store your program data into a form no only you know about the actual structure,  One of the most major reason that makes it so handy it is JVM independent that means you don't need to have JVM or java virtual machine on. your laptop after you built your java program   Example :  If you want to make a program for saving passwords or any sensitive files that you are afraid of intruders  to hack your information you can buy an application from any company, this is the problem that comes in you don't know how they save your data how they encrypting it  so you can use Java  serialization for keeping your data safe. here is how you use it  you need a class for serializing an object  these ...