Access 97 online Help explains in detail the difference between Value and Text for data bound controls. This difference may be very important in the case of Combo Boxes where text displayed in the control is not the value stored in the bound column (ControlSource) of the control. It could also be used when the Input Mask Property is specified.
It seems not unreasonable to recall the OldValue Property of data-bound controls in this context. Remembering this property may be critical in a design manipuliating the Text property.
REMINDER: If txtBox is the name of a Text Box Control then
txtBox.Value = txtBox
so the "default value" of the control is its Value property.