setting default for combobox...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I can't figure out the syntax for setting a multi-column combobox to a
particular value after populating the combobox. I get errors no matter what I
try. I'm used to doing this in Access, where it is a very simple assignment
statement (cboField = value). There must be more to it in outlook but I can't
for the life of me figure it out. Help!
 
You can select a row by using the ListIndex property.

cboTest.ListIndex = 1

Jay Taplin [MCP - VB]
 
Back
Top