Message 1 of 3
selection sets

Not applicable
11-14-2008
12:03 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am trying to have the user select lines polylines or 3dpolylines on the screen and make them into a selection set
that i can use later on in the program. This is what i have, but it don't work help me please
Private Sub commSelectLines_Click()
Dim gpCode(0) As Integer
Dim dataValue(0) As Variant
Dim groupCode As Variant, dataCode As Variant
gpCode = 0
dataValue(0) = "Line, Polyline, 3DPolyline"
groupCode = gpCode
dataCode = dataValue
Set SSlist = ThisDrawing.SelectOnScreen groupCode, dataCode
End Sub
that i can use later on in the program. This is what i have, but it don't work help me please
Private Sub commSelectLines_Click()
Dim gpCode(0) As Integer
Dim dataValue(0) As Variant
Dim groupCode As Variant, dataCode As Variant
gpCode = 0
dataValue(0) = "Line, Polyline, 3DPolyline"
groupCode = gpCode
dataCode = dataValue
Set SSlist = ThisDrawing.SelectOnScreen groupCode, dataCode
End Sub