Search found 2971 matches
- Tue Feb 09, 2021 12:09 pm
- Forum: Label Design & Printing
- Topic: Filling entire label with color (Designer)
- Replies: 1
- Views: 279
Re: Filling entire label with color (Designer)
See this post to learn how to change the RTF's white background into transparent background.
- Tue Feb 09, 2021 11:57 am
- Forum: General Discussions
- Topic: GS1 check digit SSCC calculation
- Replies: 4
- Views: 664
Re: GS1 check digit SSCC calculation
You can use this Python script to calculate the SSCC check digit. You can use the function to calculate any "GS1 Modulo10"-based check digit (e.g. SSCC, EAN-13, UPC-A, etc.) def GS1CheckDigit(num, append): value = str(num) if not value.isdigit(): return "Value should contain only numb...
- Wed Jul 08, 2020 2:05 pm
- Forum: Label Design & Printing
- Topic: print base64 image
- Replies: 2
- Views: 851
Re: print base64 image
Well, you have two problems. When you convert base64-encoded data back into original data, you will end up with the binary content (you mentioned you send over an image). By default, the variable that you define in Automation (your "Result" variable) doesn't support binary connect, though ...
- Wed Jul 08, 2020 11:42 am
- Forum: Label Design & Printing
- Topic: Append text if variable <> ""
- Replies: 2
- Views: 713
Re: Append text if variable <> ""
When you provide no value for a variable, the text box linked to that variable will simply not display on the label. Now, to save paper, you can configure label objects to move their positions. E.g. Text Box 2 is linked to Text Box 1 and Text Box 3 is linked to Text Box 2. When Text Box 2 does not a...
- Wed Jul 08, 2020 10:12 am
- Forum: Label Design & Printing
- Topic: Expiry date from manufacturing date
- Replies: 2
- Views: 5507
Re: Expiry date from manufacturing date
Hi ascelpius,
NiceLabel doesn't have such feature built-in, but it is fairly easy to add it with a VBScript/Python code.
We have discussed this already, see this post with a code example.
NiceLabel doesn't have such feature built-in, but it is fairly easy to add it with a VBScript/Python code.
We have discussed this already, see this post with a code example.
- Wed Jul 08, 2020 9:55 am
- Forum: Label Design & Printing
- Topic: Printing multiple label templates at once
- Replies: 2
- Views: 774
Re: Printing multiple label templates at once
Redirect Printing to PDF action has a flag to append data to PDF file.
For each selected record in a table, NiceLabel would open the appropriate label template, print it to PDF and add result to the same PDF file on the disk.
Will this work?
For each selected record in a table, NiceLabel would open the appropriate label template, print it to PDF and add result to the same PDF file on the disk.
Will this work?
- Fri Jun 12, 2020 2:58 pm
- Forum: Label Design & Printing
- Topic: Multiple selection from database table (Form)
- Replies: 3
- Views: 963
Re: Multiple selection from database table (Form)
To uncheck the boxes in Table object, use Select Table Row action in Deselect all rows mode.
- Wed Apr 29, 2020 2:55 pm
- Forum: Label Printing Integration & Programming
- Topic: GetVersion in nice label 2019
- Replies: 3
- Views: 1738
Re: GetVersion in nice label 2019
You can also try a suggestion here:
https://stackoverflow.com/questions/909 ... le-version
https://stackoverflow.com/questions/909 ... le-version
- Wed Apr 15, 2020 12:25 pm
- Forum: Label Design & Printing
- Topic: How to Copy and Paste Arabic! So Frustrated
- Replies: 3
- Views: 2666
Re: How to Copy and Paste Arabic! So Frustrated
For Arabic support, enable the Alternative rendering option in RTF properties.
Also, do not use built-in RTF editor to update the RTF content (the editor is not Arabic-aware and might corrupt your content).
Also, do not use built-in RTF editor to update the RTF content (the editor is not Arabic-aware and might corrupt your content).
- Wed Jan 15, 2020 2:42 pm
- Forum: Label Design & Printing
- Topic: NiceLabel Designer - Date in wrong Century
- Replies: 4
- Views: 3104
Re: NiceLabel Designer - Date in wrong Century
I can reproduce the same in 2019.0.1. However, it works "as expected" in 2019.2. Both running on Windows 10. I suggest scheduling some down time and upgrading your NiceLabel to 2019.2. You can download the NiceLabel trial and install it on top of the existing version, keeping all data and ...
- Wed Jan 15, 2020 2:26 pm
- Forum: General Discussions
- Topic: SQL statements variable on *.mdb
- Replies: 5
- Views: 3644
Re: SQL statements variable on *.mdb
The EXEC() statement used in the KB article is not supported for queries inside Microsoft Access. You need Microsoft SQL server.
- Fri Jan 10, 2020 12:54 pm
- Forum: Label Design & Printing
- Topic: Need advise to fill in text value from right to left
- Replies: 2
- Views: 3284
Re: Need advise to fill in text value from right to left
If you would not use "mask" feature, a quick solution would be setting the Text object's anchoring point to top-right. This forces the Text object to resize to left side. screenshot.png Unfortunately, the "mask" feature cannot be configured to work from right to left. So this wil...
- Wed Dec 11, 2019 10:44 am
- Forum: Label Design & Printing
- Topic: Data Matrix 2D Barcode Not Matching ISO/IEC 15434 Container
- Replies: 11
- Views: 11228
Re: Data Matrix 2D Barcode Not Matching ISO/IEC 15434 Container
I think its best that you contact the NiceLabel Technical Support, provide your sample files and let them locate a problem.
https://www.nicelabel.com/support
https://www.nicelabel.com/support
- Mon Dec 09, 2019 2:06 pm
- Forum: Label Design & Printing
- Topic: Data Matrix 2D Barcode Not Matching ISO/IEC 15434 Container
- Replies: 11
- Views: 11228
Re: Data Matrix 2D Barcode Not Matching ISO/IEC 15434 Container
I can see all the special characters in my test label.
See the attached label. I use NiceLabel 2019.2.
See the attached label. I use NiceLabel 2019.2.
- Wed Dec 04, 2019 11:57 am
- Forum: Label Printing Integration & Programming
- Topic: Error when execute webprinting Nicelabel 2019
- Replies: 6
- Views: 4089
Re: Error when execute webprinting Nicelabel 2019
Additionally to what Mytch said also upgrade to the latest version of NiceLabel 2019. We just released 2019.2.0.5339 yesterday. It fixes some problems referencing the variables in Python scripts and conditions. Download here . If you already have NiceLabel 2019, this will be in-place upgrade, keepin...