gal ListBox Help

  • Thread starter Thread starter Greg Smith
  • Start date Start date
G

Greg Smith

Ok, this will test your knowledge.

I am trying to recreate the global address book view.
The one where you start to type in a name and it shows in
the list box. You also have the To and Cc fields.

I can get the listbox working great but trying to get it
including the To and Cc fields, but trying to match up
with what you are typing is a little out there.

Does anyone know if this can be done and if so, any good
code examples to show me??

Thanks, Greg
 
Got it!!

What you do is create a combobox and bind it to test1
Create a listbox and bind it to test1 also.

Now when you type in the combobox, the listbox will update
and vise versa.

Have a custompropertychange detect what is being selected
and point it to another field like the TO field or Cc
field.

Works like a charm!!
 
Back
Top