
Change one unbound field on a continuous form view subform and they all change
Hi Everyone,
i have one main form, with a subform (continous form view) embedded on
it.
this subform has 1 bound fields and 1 unbound and displays 3 records.
i want to be able to address the unbound text field on record 2
programatically
but if i try, the unbound fields of the other 2 records also change.
this also happens when i type directly over "cat" in the form
id desc (unbound)
11 dog
22 cat
33 fish
want to change just cat to salamander but get:
bound
id desc (unbound)
11 salamander
22 salamander
33 salamander
i definitely need the unbound fields as they display read only data
not contained in the underlying table
help me pls, i need an URGENT fix
also.....
i would like to reference a single subform from a single collection of
subforms
as in
MyMainForm.MySubFormInContinuousView.item("the single subform i
want").MyUnboundTextField = "salamander"
is this possible?
regards
Edwina