Article ID: 119244
Article Last Modified on 10/30/2003
Control Property Setting Comment --------- ------------- ----------- -------------------------------------- Data1 DatabaseName BIBLIO.MDB Sample MDB in the VB directory. Data1 RecordSource Authors The Authors table is in BIBLIO.MDB. Text1 DataSource Data1 Bind the text box to the data control. Text1 DataField Author Put author's name in the text box. Command1 Caption Update What the button does.
Sub Command1_Click()
Data1.RecordSet.Update
End Sub
Data1.Refresh 'Make sure the DatabaseName and RecordSource
'properties are set before you do this.
Data1.RecordSet.Edit
Data1.RecordSet.Update
Additional query words: 3.00
Keywords: kbbug KB119244