GubertDisentis
Vendor
In order to print invoices with a maximum of 15 items I
created a random access file like follows:
file.item(1) = "Red Ink"
file.item(2) = "Blue Ink"
file.item(3) = "Green Ink" etc ( Up to 15 items )
On many invoices there are items with no entries and my
particular question is how to avoid that all 15 items show
when I print the invoice.The items with no entry show
little squares.
In other words I would like to exit the loop when
file.item(x) = "" ( no entry )
I appreciate any help.
created a random access file like follows:
file.item(1) = "Red Ink"
file.item(2) = "Blue Ink"
file.item(3) = "Green Ink" etc ( Up to 15 items )
On many invoices there are items with no entries and my
particular question is how to avoid that all 15 items show
when I print the invoice.The items with no entry show
little squares.
In other words I would like to exit the loop when
file.item(x) = "" ( no entry )
I appreciate any help.