I was going through these forums looking for information on making text boxes fill in table fields upon button commands or close of forms, etc. and ran into this post.
However, this post was from a while ago (I think the post said 2000) and I was wondering if it would still work on Access 2003?
You'll could write some code for the form....
Dim db As Database
Dim rs As Recordset
Set db = CurrentDb
Set rs = db.OpenRecordset("Orders")
With rs
.AddNew
.Fields("Date") = Me.UnboundTextBoxName.Value
.Update
End With
Place this code on a event, e.g. a click of a button
rs.Close
However, this post was from a while ago (I think the post said 2000) and I was wondering if it would still work on Access 2003?