S
Sash
I have some code where I set various fields to record set values, i.e.:
IN1MI = rs.Fields("IN1_MI")
My issue is that if this field is null, it kicks out as invalid use of null.
I'm not sure how to cleanly handle this...I'm trying to avoid and if
statement because there are so many fields.
IN1MI = rs.Fields("IN1_MI")
My issue is that if this field is null, it kicks out as invalid use of null.
I'm not sure how to cleanly handle this...I'm trying to avoid and if
statement because there are so many fields.