1
I really have no idea how to do this, but if this is really possible it would be very helpful to me, I tried in some ways but none of it worked
I have a ComboBox cboBusca where I select what I want to search for in DataGridView
Ex: LINES, FIDELITY, CONTRACT and etc
And another ComboBox cboCriterio where I would define what I want to seek
Ex: A+, NEW CONTRACT, EXPIRED, etc
So I would basically like after I choose a value on cboBusca he populated the cboCriterio since what I’m filtering is kind of fixed values I could manually add what I want to appear on cboCriterio after selecting a particular option on cboBusca.
The items of
cboCriteriowill be filled by Database records, correct?– Focos
not myself would fill it manually as I had quoted, for example
IF(cboBusca == FIDELIDADE){
cboCriterio.Items.Add("Fidelizado");
cboCriterio.Items.Add("Não Fidelizado");
cboCriterio.Items.Add("Vencido");– Patrick Perdigão
but that way it doesn’t work but the logic would be this
– Patrick Perdigão