Afterupdate

  • Thread starter Thread starter hermie
  • Start date Start date
H

hermie

Hello

I put this simple event in my afterupdate but it not works?
I got error message object required?

I tried:

Private Sub cbotarea_AfterUpdate()
Me.cbotarea.Column(2).value = Me.Txtvalor.value
End Sub

I also tried:

Private Sub cbotarea_AfterUpdate()
Me.cbotarea.Column(2) = Me.Txtvalor
End Sub

What goes wrong here?

Herman
 
Presumably your combobox is based on data in a table. Update the table row,
and do a requery on your combobox.
 
Back
Top