I have a form with a combo box drop down menu...I am having a couple issues...
1. (referring to code below) After Update is not updating form. I want the form to populate with the info about the selected item from the combo box.
#1 has been solved!
2. How do I refresh the drop down list while form is open after a new record has been created and added?
#2 has been solved!
3. Can I add an item "New Program" at the top of the drop down menu that will focus on a text box on the form to have user input new program info?
lst_program_query is drop down list combo box
Code:
Private Sub lst_program_query_AfterUpdate()
On Error Resume Next
Dim rst As Object
Set rst = Me.RecordsetClone
rst.FindFirst "[tiw_program_no]=" & Me.lst_program_query.Value
Me.Bookmark = rst.Bookmark
End Sub