Unbound form fields won't initialize

patrickd123

Patrickd123
Local time
Today, 15:55
Joined
Jan 21, 2007
Messages
29
Hi,

I am looking for a way to properly initialize unbound field. The problem is that it keeps the previous values when I go to next record. I think the problem is that I put my initialisation coding in the form's load event which occurs only once when opening the form. I guess that if I could find an event that triggers each time I go to a new record, my problem would be fixed.

Thanks for your suggestions
 
The problem is that it keeps the previous values when I go to next record.

What would you expect it to do if it is unbound? As it is, this is what should happen if you flit between records where a textbox is not bound to a field in the form's underlying recorset. The big question is why it is not bound to a field.

I guess that if I could find an event that triggers each time I go to a new record, my problem would be fixed.
There is a form event that triggers every time a new record is navigated to on the form - it's called OnCurrent.
 

Users who are viewing this thread

Back
Top Bottom