combo box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

dear sirs

i want to do this
when i change a field, when i open a combo box it changed also in the combo box
it beans when i click them combo box reload it's dat
 
I think this will reset the combo box. In the afterupdate
of the event you need to save the changes and refresh the
combo box. I am sure you will get some other responses. I
hope this works

Try for saving record
DoCmd.RunCommand acCmdSaveRecord
or
If Me.Dirty = True Then Me.Dirty = False

and then for refreshing combo box

Me.cboTyp.Value=Null

Jim
 
Back
Top