B
Betsy
This should be easy! Here is the code...
Private Sub Combo18_AfterUpdate()
Me![SchoolID] = Me!Combo18.Column(1)
Me![Counselor Name] = Me!Combo18.Column(2)
End Sub
The problem is that it will not accept the first line:
Me![SchoolID] = Me!Combo18.Column(1)
If I move it around it is perfectly willing to place the counselor's name
into the correct text box, but for the schoolID it says I have to save the
record first. Anyone have any idea why???
I've checked and rechecked spelling, properties, etc!
Thanks for any help you can give.
Private Sub Combo18_AfterUpdate()
Me![SchoolID] = Me!Combo18.Column(1)
Me![Counselor Name] = Me!Combo18.Column(2)
End Sub
The problem is that it will not accept the first line:
Me![SchoolID] = Me!Combo18.Column(1)
If I move it around it is perfectly willing to place the counselor's name
into the correct text box, but for the schoolID it says I have to save the
record first. Anyone have any idea why???
I've checked and rechecked spelling, properties, etc!
Thanks for any help you can give.