Hello all,
I have a drop down box that populates 3 fields,
SELECT LEGAL_NOTE , 'this is bound to drop down
FY, 'this is unbound to a text box
LEGAL_CITE ' this is bound to a text box
FROM R_LEGAL_CITE
I have a OnChange event on the dropdown control that works fine, however, me.txtLegalFy is unbound and is display text box only. It works on the first drop down selection, however, if I change the drop down selection, it will not update. It maintains from the first selection. Me.txtLegalCiteMFR is bound and changes without issue on when the dropdown selection changes.
Private Sub cmbLegalNote_Change()
Me.txtLegalFy = Me.cmbLegalNote.Column(1)
Me.txtLegalCiteMFR = Me.cmbLegalNote.Column(2)
End Sub
Any suggestions? I have tried many different approaches.
Thanks