Subject Strange happenings with IB_memos
Author Paul Hope
I have a table containing 1 line of data defined as follows

ac_no integer not null,
co char(1) not null,
ac_notes blob sub_type 1,
op_notes blob sub_type 1,
primary key(ac_no,co)

Data is preloaded into the line with (say) ac_no=3000 and co='A' (blobs are
null)

I have a form with with an ib_connection, an ib_cursor, ib_datasource, 2
ib_memos and a button.
ib_cursor has 'select * from thetable' , requestlive=true and beforepost
setting values for fields ac_no and co.
the button.onclick has 'if cursor.state=dssedit then cursor.post'
memos are connection to each blob.
form on create opens the cursor

if I edit either memo and press the button then close and open the form (to
check data) all is ok. But if I alter one and press the button then alter
the other and press the button both ib_memos display the same value. If i
close and open the form the data is correct with the memos displaying their
correct values.

it looks like the refresh is putting the new value into both controls?

V3.6D

Regards
Paul