Yes Dan, it is in enter mode, I will see if I can change to edit mode, but
when I did the edit * from guest2 there was only one row both before the
refresh and after.
If edit is the fix then I will do that -- thanks,
Bernie Lis
----- Original Message -----
From: "Dan Goldberg" <[EMAIL PROTECTED]>
To: "RBASE-L Mailing List" <[email protected]>
Sent: Monday, July 28, 2008 2:37 PM
Subject: [RBASE-L] - RE: Need another set of eyes for Table Refresh
Are you on enter mode?? If so, when you save a row the fields are blank to
accept the next rows data.
Dan Goldberg
-----Original Message-----
From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Bernard
Lis
Sent: Monday, July 28, 2008 10:59 AM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Need another set of eyes for Table Refresh
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