Thank you for this example , but i'll not pick items.
I have already a selection set.
The code works, i can try to find a solution myself - pearhaps...
my sset:
Dim EditArt As String
For i = 0 To ListBox1.Items.Count - 1
If ListBox1.SelectedItem(i) Then
EditArt = ListBox1.SelectedItem.ToString()
End If
Next i
Dim acApp As Object, acDoc As Object
Dim fType(1), fData(1), sset As Object
acApp = GetObject(, "autocad.application")
acDoc = acApp.ActiveDocument
On Error Resume Next
sset = acDoc.SelectionSets.Add("h1")
fType(0) = 0 : fData(0) = "INSERT"
fType(1) = 2 'DXF-GroupCode
fData(1) = EditArt 'Name
'Select Blocks
sset.Select(acSelectionSetAll, , , fType, fData)