userform combobox

J

Jonathan

Hi, using Outlook 2007. I have a simple userform that only has a combobox.
The problem is that I cannot enter a value and cannot select an item from the
list.

Enable=true
Locked=false

I don't know if this is a red herring... the multi-column combobox is loaded
using data from sql2005

Do Until rsClient.EOF
cboClientList.AddItem
For columnIndex = 0 To fieldCount
cboClientList.List(rowIndex, columnIndex) =
rsClient.Fields(columnIndex) & ""
Next columnIndex
rsClient.MoveNext
rowIndex = rowIndex + 1
Loop

The combobox has 4 columns that are all visible.

Any ideas or suggestions appreciated :)

Many thanks,
Jonathan
 
J

Jonathan

I found it... it was my on change event that was causing issues...

thanks,
Jonathan
 

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