T
Troy Bull
Greetings
I have a simple application 2 tables related via foreign key. Table 1
Parts, table 2 Clients. ClientID is the primary key in the Client
Table, clientID is a foreign key in the Parts table. I have a simple
form that displays "parts" rows one at a time. I want to do the
following on my partsBindingSource
partsBindingSource.Filter = "client_id in (select clientId from clients
where (name like 'KI%'))";
It blows up. Is there a way to get this same functionality?
Thanks
Troy
I have a simple application 2 tables related via foreign key. Table 1
Parts, table 2 Clients. ClientID is the primary key in the Client
Table, clientID is a foreign key in the Parts table. I have a simple
form that displays "parts" rows one at a time. I want to do the
following on my partsBindingSource
partsBindingSource.Filter = "client_id in (select clientId from clients
where (name like 'KI%'))";
It blows up. Is there a way to get this same functionality?
Thanks
Troy