I have a field [CustInfo] on a Customer Information form with control source to a memo field. It looks like this:
NAME
ADDRESS
CITY
STATE
ZIP
I want to be able to press a button that will copy the individual lines of this field to their respective fields on the form.
example:
.Name = Line1 ([CustInfo])
.Address = Line2 ([CustInfo])
.City = Line3 ([CustInfo])
.State = Line4 ([CustInfo])
.Zip = Line5 ([CustInfo])
Is there an easy way to do this?
NAME
ADDRESS
CITY
STATE
ZIP
I want to be able to press a button that will copy the individual lines of this field to their respective fields on the form.
example:
.Name = Line1 ([CustInfo])
.Address = Line2 ([CustInfo])
.City = Line3 ([CustInfo])
.State = Line4 ([CustInfo])
.Zip = Line5 ([CustInfo])
Is there an easy way to do this?