G
Guest
I have a report that will generate barcodes for each of 2 fields. If either,
or both, fields are blank I get an "invalid null" message when running the
report. How can I eliminate these invalid null messages when running the
report? The two fields are NonStockBarcode, and StockBarcode.
The report to generate the barcodes is as follows:
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Result = SetBarData(NonStockBarcode, Me)
Result = SetBarData(StockBarcode, Me)
End Sub
Thanks
Patrick
or both, fields are blank I get an "invalid null" message when running the
report. How can I eliminate these invalid null messages when running the
report? The two fields are NonStockBarcode, and StockBarcode.
The report to generate the barcodes is as follows:
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Result = SetBarData(NonStockBarcode, Me)
Result = SetBarData(StockBarcode, Me)
End Sub
Thanks
Patrick