On the face of it, your SQL statement should be working. When you say that
you can't get it to work, what do you mean? Do you get an error? If so,
what's the error? If you don't get an error, what's happening?
You might also take a look at
http://office.microsoft.com/en-ca/access/HA011730581033.aspx?pid=CH063650361033

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
>I have a table called MyType
> with 2 columns "MainType" and "SubType"
[quoted text clipped - 34 lines]
>
> Charles W
charles@home.com - 19 May 2008 14:11 GMT
I dont get an error.
The First listbox displays correctly.
When I click on the first box it Highlights the line of text.
The second listbox is empty. When I click on it
I get an dotted "outline" of where the first line text should be.
Is these some kind of refresh or update mechanism that I am
missing where the second listbox gets refreshed or updated
using the "OnClick event" of the first listBox?
Charles W
> On the face of it, your SQL statement should be working. When you say that
> you can't get it to work, what do you mean? Do you get an error? If so,
[quoted text clipped - 41 lines]
>>
>> Charles W
Duane Hookom - 19 May 2008 17:41 GMT
You need to requery the second list box after the update of the first list
box.
Sub RqryList1()
Me.List1.Requery
End Sub
You can call this sub in the On Current of the form and the after update of
List0.
BTW: take the time to name your controls ;-)

Signature
Duane Hookom
Microsoft Access MVP
> I dont get an error.
> The First listbox displays correctly.
[quoted text clipped - 54 lines]
> >>
> >> Charles W
charles@home.com - 22 May 2008 08:36 GMT
Thanks.
That worked.
Charles W
> You need to requery the second list box after the update of the first list
> box.
[quoted text clipped - 68 lines]
>> >>
>> >> Charles W