
Originally Posted by
NTC
Well your code indicates you are calling each field individually; so are these tbo fields unbound? if so then put the code into the unbound field itself as its control source rather than in an AfterUpdate event. i.e the unbound field tboAddress1 should have inside of it: = Me.cboSupplier.Column(2)
Then as you change cboSupplier all these fields will automatically change.
If the tbo fields are bound to the same table as cboSupplier; then your approach is not necessary at all. delete cboSupplier and remake it and be sure to select the correct option when the wizard pops up (the bottom option to select record).
Finally if tbo fields are bound - but not bound to the same table as cboSupplier - then essentially you are writing data from 1 table to another table which is not a good design at all and shouldn't be necessary in a relational database.