View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Vasant Nanavati Vasant Nanavati is offline
external usenet poster
 
Posts: 1,080
Default Need help with combobox output

Any time, Steve!

--

Vasant

"Steven R. Solorio" wrote in message
...
Dear Vasant,

I wanted to let you know that the code you posted worked like a charm.
You make it look easy. Again, many thanks for your help.

Steve


Steven R. Solorio wrote:
Thank you for responding so quickly. I will try this as soon as I can
and I will let you know what happened.

Thanks,
Steve

Vasant Nanavati wrote:

All you need is:

Private Sub cboCustomerList_Change()
txtContact = cboCustomer.List(, 1)
txtPhone = cboCustomer.List(, 2)
End Sub