VBA listbox click callback

E

ecrichlow

All of a sudden my ListBox_Click Sub stopped getting called.

Once I looked into it, it happened when I changed it from a
fmMultiSelectSingle box to a fmMultiSelectMulti box.

I need to be able to get notification when selections change
because I have dynamic content in that listbox, and some options can be
mutually exclusive, so that I have to manually check what's been
clicked and sometimes manually modify the selections accordingly.

Is there any other option?

....Thanx...
....Eric...
 
J

Jim Gordon MVP

Hi,

If I understand correctly you put a different form control onto a
userform. Each control has its own click actions, so you'll need to put
the code for what happens with the click in the sub that goes with the
new form control.

-Jim
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top