jarheadjim
Registered User.
- Local time
- Today, 15:54
- Joined
- Mar 6, 2002
- Messages
- 83
i have a combo box that on "after update" should fill in two other text boxes from a table, but I don't know how to seperate the two pieces of code. do i need a ; or : in there?
Private Sub Location_AfterUpdate()
[Material] = [location].Column(1)
[NSN] = [location].Column(2)
End Sub
Private Sub Location_AfterUpdate()
[Material] = [location].Column(1)
[NSN] = [location].Column(2)
End Sub