lauraSatellite
Technical User
I have a Primary Key drop down list which has a query as its source. Currently when i insert a new record, i have to close out of the form, and re-enter it to have an up-to-date drop down list.
I need the drop down list to "refresh" or call its source query again after the update occurs.
I have tried this:
Private Sub Form_AfterUpdate()
Me.RecordSource = Me.SourceQuery.QueryField
End Sub
I am new to procedures, if you have any useful tips they would be very much appreciated.
I need the drop down list to "refresh" or call its source query again after the update occurs.
I have tried this:
Private Sub Form_AfterUpdate()
Me.RecordSource = Me.SourceQuery.QueryField
End Sub
I am new to procedures, if you have any useful tips they would be very much appreciated.