A family of Microsoft relational database management systems designed for ease of use.
Doable, but tricky. You have to save the record after each capture. That is doable with
Me.Dirty=false
in the OnChange procedure event handler. Note that doing so, the cursor moves at the end of the text, so yo may have to play with SelStart:
Private Sub Text1_Change()Dim start As Long start = Me.Text1.SelStart Me.Dirty = False Me.Text1.SelStart = startEnd Sub
You may also have to force a Me.Recalc, to handle the case where there is no text at all actually typed, etc.
Also note that the record "is saved" (unless an error occurs, because a required field is missing a value, or other reason) ecah time the text changes. That is quite "chatty" and un-usual.