I have a form with two combo boxes, one for shipping point and one for destination point. I then use a text box to concatenate the 2 values together. All of this is working fine on the form. I now want to store this value in a freight table. I'm using the table as the controlsource for the form so I have tried the following code but it doesn't work.
Private Sub Text27_AfterUpdate()
Me.Route = Me.Text27.Column(0)
End Sub
Any thoughts or suggestions? Thanks for you response.
Jeff
Private Sub Text27_AfterUpdate()
Me.Route = Me.Text27.Column(0)
End Sub
Any thoughts or suggestions? Thanks for you response.
Jeff