QuickQuestion
Technical User
Reading a linked table that uses a postal code to assign the package to the right driver from another table, VB aborts when the postal code is empty (OK when there is a space in the field).
How could I test the rsIn.Field("POSTAL"
to identify the problem and replace it with a field containing a space?
I tried
if rsIn.Field("POSTAL"
= " ",
if rsIn.Field("POSTAL"
= "", and
if rsIn.Field("POSTAL"
is Null without success.
Thanks for your help
How could I test the rsIn.Field("POSTAL"
I tried
if rsIn.Field("POSTAL"
if rsIn.Field("POSTAL"
if rsIn.Field("POSTAL"
Thanks for your help