[RESOLVED] datagridview question
sorry this is probably very sloppy
I am connected to a obdc database to look through records
i wanted a datagridview at the bottom and several combo boxes and maybe two date pickers at the top
the idea being as i select items at the top the datagridview would widdle away entrys to only show the ones that are reflected in the combo boxes
example
all tickets that have jsmith as customer
would show 100 tickets
all tickets that show jsmith as customer and jdoe as the reporter
would show 50 tickets ..something like that
the way its currently working is if i select Jsmith it will just take me to the first ticket that has jsmith in the customer field and leave all the others
i hope this makes sense
Re: datagridview question
Bind your data to a BindingSource and bind that to your grid. As you set values in the other controls you set the Filter property of the BindingSource and the grid data will reflect the changes.
Re: datagridview question