I have to work with the BarTender label programm from SeaGull and am currently assigned with creating an easier and user friendly way to print various labels.
I want to have only one template for all my labels.
There are small images on the labels, that don't show on every label.
Is there a way, to link checkboxes in the Data Entry Form to images in the template designer? Like, when I check the checkbox, the image will show and print and when I leave the checkbox unchecked, the image will be neither printed nor shown.
I tried to solve that myself, but so far, no success. The script for the image of the batch no, i.e., would be:
When I test run this code, I get the error #6900: Process is not supported for this type of object. I am sure to do something absolutely wrong, but I can't find it.
Please help,
E.
I want to have only one template for all my labels.
There are small images on the labels, that don't show on every label.
Is there a way, to link checkboxes in the Data Entry Form to images in the template designer? Like, when I check the checkbox, the image will show and print and when I leave the checkbox unchecked, the image will be neither printed nor shown.
I tried to solve that myself, but so far, no success. The script for the image of the batch no, i.e., would be:
Code:
if format.objects("Checkbox Lot").Value = false then
format.objects("iLot").PrintVisibility = false
else
format.objects("iLot").PrintVisibility = true
end if
When I test run this code, I get the error #6900: Process is not supported for this type of object. I am sure to do something absolutely wrong, but I can't find it.
Please help,
E.