My form has 4 fields
first name(Fnm), last name(Lnm), Customer Name(Cnm), and CustAddress1
Cnm is a concatnation of Lnm & Fnm.

After createing Cnm, I do a table refresh, then all fields go blank.
Here is the code from my eep on exit from Lnm:

 saverow
 GetProperty cidLNm textvalue 'Lnm'
 GetProperty cidFnm textvalue 'Fnm'
 set var cnm = (.Lnm + ',' & .Fnm)
 update Guest2 set CustName = .cnm where count=last
edit * from guest2
 property table Guest2 'refresh'
edit * FROM GUEST2
 skip to CustAddress1

The edit shows me that the data is there.

Bernie Lis


Reply via email to