H
Herman Wellington
Hi,
I learned the Cascading Combo from below link
http://bytes.com/forum/thread605958.html
and made the following Afterupdate Event
With Me!(matcode)
If IsNull (Me!matcat) Then
.RowRource = ""
Else
.RowRource = "Select [matcode] " & _
"From matdetail " & _
"Where [matcat]=" Me!matcat
Endif
Call .Requery
Endwith
The only different of the Tutor's example and my work is they look up a [ID]
and I look up [matcat] which is a text. The code above couldn't automatic
fill in the query to come up with result.
How can I chance, may be the list line, to solve the problem.
Thanks.
Herman W.
I learned the Cascading Combo from below link
http://bytes.com/forum/thread605958.html
and made the following Afterupdate Event
With Me!(matcode)
If IsNull (Me!matcat) Then
.RowRource = ""
Else
.RowRource = "Select [matcode] " & _
"From matdetail " & _
"Where [matcat]=" Me!matcat
Endif
Call .Requery
Endwith
The only different of the Tutor's example and my work is they look up a [ID]
and I look up [matcat] which is a text. The code above couldn't automatic
fill in the query to come up with result.
How can I chance, may be the list line, to solve the problem.
Thanks.
Herman W.