Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Updating a Drop down list

Status
Not open for further replies.

Spec01

IS-IT--Management
Jul 21, 2005
73
CA
Hello Everyone,

I have a database with an Employee Lookup. When I put a new record into the database using the form view the name in the drop down list won't get updated until the next time I reopen the form. Does anyone know how to make it so that it will Update right after the record has been entered. Here is the code that I'm using right now for the Drop Down list.

Private Sub Combo104_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object

Set rs = Me.Recordset.Clone
rs.FindFirst "[ComputerID] = " & Str(Me![Combo104])
Me.Bookmark = rs.Bookmark
End Sub



If anyone knows how I could make it so it updates after the record has been entered it would be most appreciated.

thanks,
 
Hi
You can use requery:
Private Sub Form_AfterInsert()
Me.Combo104.Requery
End Sub

PS I have often regretted not using meaningful names for controls from an early stage of development.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top