MultiSelect listbox question

  • Thread starter Thread starter Cmenkedi
  • Start date Start date
C

Cmenkedi

Hello,
I have a Multiselect listbox that I am using to filter a report. My problem
is that my listbox has 2 columns. I want to be able to filter by the second
column when it doesn't equal 0. Is there a way that this can be accomplished?

Thanks in advance.
Chris
 
Hello,
I have a Multiselect listbox that I am using to filter a report. My problem
is that my listbox has 2 columns.  I want to be able to filter by the second
column when it doesn't equal 0.  Is there a way that this can be accomplished?

Thanks in advance.
Chris

you mean when the itemsselected property of the listbox <> 0, right?

Sure. Instead of passing lbx.Column(0), pass lbx.Column(1)

(columns are zero-based.)
 
Back
Top