What about people all right?
How do I get Fill a textbox with all the items in the list of a combobox in a textbox, where combobox items can be variable come from different places.
Itwaslikethis
Code:
ForEachLinhaInobjClasse.atividades_secundariasComboBox1.Items.Add(Linha.code+" - " + Linha.text)
For Each VARIAVEL_DE_STRING As String In ComboBox1.Items
txt_atividades_secundarias_encontradas.Text &= VARIAVEL_DE_STRING & vbCrLf
Next