mtagliaferri
Registered User.
- Local time
- Today, 13:26
- Joined
- Jul 16, 2006
- Messages
- 550
I have a third record field that should be updated after a selection is made in a combo box as:
The BillCurrency does not get populated, however if I manual type a value in BillCurrency and then I change the value in the Combo Box the BillCurrency field clears the value.
Any suggestions?
Code:
Private Sub LstCountry_AfterUpdate()
Me.BillCurrency = Me.LstCountry.Column(4)
End Sub
Any suggestions?