Selecting Multiple Items From A Combo Box

How to select multiple items from a combo box or list box ?

There are two possible approaches that could be followed:

  1. Use the Select Multiple Items activity to select multiple items in a combo box or a list box. For more detailed information, check Select Multiple Items documentation.

  1. Use Find Children activity to get the UiElement from the combo box.
  2. Then use a normal Click activity by setting the Key modifier property to 'Ctrl'.

Since it might be not visible on screen, try WindowMessages or SimulateClick first.

Read more on How to select on a Listbox with ctrl click .