Message 1 of 2
Selection set from a previous selection set
Not applicable
11-27-2003
04:46 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I make a selection set named SelObj.
After i want to make a parzial selection set named SelParz
from my previous SelObj using the filter metod.
My wrong code:
'Make SelObj and SelParz
Set SelObj = ThisDrawing.SelectionSets.Add("TasselliLet")
Set SelParz = ThisDrawing.SelectionSets.Add("SelezioneParz")
'Select the total entity
SelObj.SelectOnScreen
'Dim and make the filter
Dim TipoFiltro(0) As Integer
Dim DatiFiltro(0) As Variant
TipoFiltro(0) = 8
DatiFiltro(0) = "Dxf1"
'My parzial selection set
SelParz.Select acSelectionSetPrevious, , , TipoFiltro, DatiFiltro
I dont want to refer previous selection but i want to refer any time at the SelObj selection set?Why?
Thx to all!
After i want to make a parzial selection set named SelParz
from my previous SelObj using the filter metod.
My wrong code:
'Make SelObj and SelParz
Set SelObj = ThisDrawing.SelectionSets.Add("TasselliLet")
Set SelParz = ThisDrawing.SelectionSets.Add("SelezioneParz")
'Select the total entity
SelObj.SelectOnScreen
'Dim and make the filter
Dim TipoFiltro(0) As Integer
Dim DatiFiltro(0) As Variant
TipoFiltro(0) = 8
DatiFiltro(0) = "Dxf1"
'My parzial selection set
SelParz.Select acSelectionSetPrevious, , , TipoFiltro, DatiFiltro
I dont want to refer previous selection but i want to refer any time at the SelObj selection set?Why?
Thx to all!