add handle at runtime to comboboxes

  • Thread starter Thread starter Tom De Troch
  • Start date Start date
T

Tom De Troch

Hi,

I have a table configuration that has indefinite records.
I have created two arrays that contain as much labels and coboboxes as
records in the table configuration.
I've given each combobox the name of the configuration name.

My question is:

How can I add something like "onDisplayMemberChanged" on each of these
comboboxes?
 
Tom,

I think your looking for the AddHandler command.
Sample usage:-
AddHandler cboManufacturers.SelectedIndexChanged, AddressOf MyHandler
HTH,
Geoff
 
Back
Top