Code: Alles auswählen
LB = myDialog.getControl("ListBox1")
Anzahl = LB.ItemCount
for i = 0 to Anzahl -1
sEintrag = LB.Items(i)
sEintraege = sEintraege & sEintrag & " "
next
msgbox sEintraege
Code: Alles auswählen
LB = myDialog.getControl("ListBox1")
Anzahl = LB.ItemCount
for i = 0 to Anzahl -1
sEintrag = LB.Items(i)
sEintraege = sEintraege & sEintrag & " "
next
msgbox sEintraege