L
Lonnie
Ok, im creating my cascading combo using the process from this website:
http://www.fontstuff.com/access/acctut10.htm
I am doing style #1, with a table for each selection
My box #1(MACHINE) reads fine, but when selecting, it brings up no value
(blank) for box #2 (REASON)
Here's my after update for box 1 (MACHINE)
Private Sub MACHINE_AfterUpdate()
On Error Resume Next
Select Case MACHINE.Value
Case "TURRET"
REASON.RowSource = "tblrturret"
Case "PLASMA"
REASON.RowSource = "tblrplasma"
Case "SAW"
REASON.RowSource = "tblrsaw"
End Select
End Sub
each table has only one field with many entries. Any hints?
http://www.fontstuff.com/access/acctut10.htm
I am doing style #1, with a table for each selection
My box #1(MACHINE) reads fine, but when selecting, it brings up no value
(blank) for box #2 (REASON)
Here's my after update for box 1 (MACHINE)
Private Sub MACHINE_AfterUpdate()
On Error Resume Next
Select Case MACHINE.Value
Case "TURRET"
REASON.RowSource = "tblrturret"
Case "PLASMA"
REASON.RowSource = "tblrplasma"
Case "SAW"
REASON.RowSource = "tblrsaw"
End Select
End Sub
each table has only one field with many entries. Any hints?