|
-
Aug 15th, 2000, 02:47 PM
#2
Lively Member
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...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|