Вам нужно получить каждый предмет из ComboBox. Например, где Window Name
и ComboBox Name
- это имена вашего окна и ComboBox соответственно
comboBox = Window("Window Name").WinComboBox("ComboBox Name");
count = comboBox.GetItemsCount
For i = 0 to count-1
item = comboBox.GetItem(i)
' put the item in the DataTable...
Next
Способ вывода каждого элемента, строка ' put the item in the DataTable..
, будет зависеть от вашей настройки.