setting default for combobox...

J

Jim Burke in Novi

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!
 
J

Jay Taplin

You can select a row by using the ListIndex property.

cboTest.ListIndex = 1

Jay Taplin [MCP - VB]
 
Top