S
snelson via AccessMonster.com
I have been reading previous posts for some time and I find myself getting
deeper and deeper.
My problem is this. I have a form with a combo box (using a look up table) I
keep the unique ID number from the look up table in my main table. I want to
populate two unbound text fields to show the value of columns in the combo
box. I have acheived this BUT as soon as I close the form and then reopen it
the information is not displayed in the unbound text fields.
I have used the AfterUpdate and put this in it
Private Sub Combo578_AfterUpdate()
If IsNull(Me.Combo578) Then
Exit Sub
End If
Me.Short1 = Me.Combo578.Column(1)
Me.FullOffence = Me.Combo578.Column(2)
End Sub
How do I get the two unbound text fields to show the information that relates
to information being shown in the combo box?
thanks in advance, any help would be appreciated
Steve
deeper and deeper.
My problem is this. I have a form with a combo box (using a look up table) I
keep the unique ID number from the look up table in my main table. I want to
populate two unbound text fields to show the value of columns in the combo
box. I have acheived this BUT as soon as I close the form and then reopen it
the information is not displayed in the unbound text fields.
I have used the AfterUpdate and put this in it
Private Sub Combo578_AfterUpdate()
If IsNull(Me.Combo578) Then
Exit Sub
End If
Me.Short1 = Me.Combo578.Column(1)
Me.FullOffence = Me.Combo578.Column(2)
End Sub
How do I get the two unbound text fields to show the information that relates
to information being shown in the combo box?
thanks in advance, any help would be appreciated
Steve