Populating To: Field from Combobox

  • Thread starter Thread starter martin1000
  • Start date Start date
M

martin1000

Hi All,

New member, first time Outlook Form creator.

I am trying to populate the standard To: field of a form from
combobox with names. Basically, a user chooses from the combobox an
the To: field is populated. The To: field for this application wil
only ever have one address, so there is no worries about multipl
address.

There is no way to bind the field when To is selected as the value.

Any ideas?

Thank you!!!

Marti
 
Try it this way:

Function Item_Send()
Set objPage = Item.GetInspector.ModifiedFormPages("Message")
Set ComboBox1 = objPage.Controls("ComboBox1")
Item.To = ComboBox1.Value
End Function
 
Back
Top