Auto Update

D

Damien

I cant find a way that will let me autoupdate my table.
I want to be able to enter Acct. Codes and once i have
entered them in the form the table will just add them to
my drop down list.
 
P

Private Sub Form_AfterUpdate

The dropdown list is static after the form is loaded but
you can tell it to requery once the form detects a new
record or better yet when anything is changed to capture
renamed values.

Private Sub Form_AfterUpdate()
cboWhateverName.Requery
End Sub

-Cameron Sutherland
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top