I have a combo box on a form which displays the list of fields for that form. When I make a selection I want it to fill out the value of the field selected into a text box below. At the moment I have managed to return the name of the field, but not the value with the code given below. The combo is Combo6 and the text box Text8.
Private Sub Combo6_AfterUpdate()
Dim ItemAmmend As Object
Set ItemAmmend = Combo6
Text8 = ItemAmmend
End Sub
Any suggestions greatly appreciated.
Regards
Brockers
Instructor
New Horizons Manchester England
Private Sub Combo6_AfterUpdate()
Dim ItemAmmend As Object
Set ItemAmmend = Combo6
Text8 = ItemAmmend
End Sub
Any suggestions greatly appreciated.
Regards
Brockers
Instructor
New Horizons Manchester England