cancel
Showing results for 
Search instead for 
Did you mean: 

Barcode in AdobeForm

Former Member
0 Kudos

Hi experts

My problem is:

I need add 'ENTER' after barcode in AdobeForm

If anybody now How can I do it?

Thanks

Larissa

Accepted Solutions (0)

Answers (3)

Answers (3)

former_member300754
Participant
0 Kudos

Using ASCII Symbology to solve this problem.

In this case, 'ENTER' is using CR in between string. Then you can insert (char)13 between the string as the following:


String barcode = null;

barcode = "432112" + (char)13 + "33333" + (char13) + "555";

Almost forget, there's Code128 situation. On the other hand, you would use ASCII symbology on other type of barcode as well.

Have a great day.

Former Member
0 Kudos

Hi Peerasit

I don't now how solve this problem.

I think the problem is in printer's properties.

Regards

Larissa

former_member300754
Participant
0 Kudos

Hi Larissa,

If you have the solution, please let me know. I have the same problem. Thanks.

Peerasit