Hi, ive got a small problem, ive got a form which is set up so that all the fields are saved to a db when a save button is licked, its connected through and rs, i need the recordset to update when save is clicked so that when i move to the next form using the ".show" i need the values from the first form to show in the drop downs in the second. it all works fien if a save the first shut it down and then when i open it again the values are there.. is there a way to refresh the recordset.. below is the code ive been rying buit to no avail.
VB Code:
  1. Public Sub UnloadAllForms()
  2. Dim Form As Form
  3. For Each Form In Forms
  4. Unload Form
  5. Set Form = Nothing
  6. Next Form
  7. rs.Update
  8. End Sub