Even though the database is updated when you do an ADODC.Update, the textboxes will still show the data from when they were first initialized. To update the textboxes, use the following code:

With B.adodc1.Recordset
.Fields("Extension") = sInput '15
.Fields("Notes") = "USERID changed Fields")
.Fields("Late") = True
.Update
End With

textfields1.text = B.adodc1.Recordset("Extension")
textfields2.text = B.adodc1.Recordset("Notes")
etc...