<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic SelectionSet Filters v3.3 in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052758#M53496</link>
    <description>Hi All,

I am trying to filter out all walls in my drawing. Code runs fine but no
walls are added.
Could someone Please tell me what I'm doing wrong. Or could I do it eaiser.

Thanks for you time.

Paul</description>
    <pubDate>Tue, 08 Jun 2004 18:42:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2004-06-08T18:42:21Z</dc:date>
    <item>
      <title>SelectionSet Filters v3.3</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052758#M53496</link>
      <description>Hi All,

I am trying to filter out all walls in my drawing. Code runs fine but no
walls are added.
Could someone Please tell me what I'm doing wrong. Or could I do it eaiser.

Thanks for you time.

Paul</description>
      <pubDate>Tue, 08 Jun 2004 18:42:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052758#M53496</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-08T18:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: SelectionSet Filters v3.3</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052759#M53497</link>
      <description>Sorry. Forgot code.

Dim gpCode() As Integer
Dim gpData As Variant

'On Error Resume Next


     With ThisDrawing.Utility
        ThisDrawing.SelectionSets("0").Delete
        Set ssWall = ThisDrawing.SelectionSets.Add(0)
        ReDim gpCode(0): ReDim gpData(0)
        gpCode(0) = 0:   gpData(0) = "AecWall"
        ssWall.Select acSelectionSetAll, , , gpCode, gpData
        End With
"Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
news:40c60887$1_1@newsprd01...
&amp;gt; Hi All,
&amp;gt;
&amp;gt; I am trying to filter out all walls in my drawing. Code runs fine but no
&amp;gt; walls are added.
&amp;gt; Could someone Please tell me what I'm doing wrong. Or could I do it
eaiser.
&amp;gt;
&amp;gt; Thanks for you time.
&amp;gt;
&amp;gt; Paul
&amp;gt;
&amp;gt;&lt;/PRICHARDSON&gt;</description>
      <pubDate>Tue, 08 Jun 2004 18:44:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052759#M53497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-08T18:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: SelectionSet Filters v3.3</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052760#M53498</link>
      <description>"Aec_Wall" go figure.
"Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
news:40c608f2$1_1@newsprd01...
&amp;gt; Sorry. Forgot code.
&amp;gt;
&amp;gt; Dim gpCode() As Integer
&amp;gt; Dim gpData As Variant
&amp;gt;
&amp;gt; 'On Error Resume Next
&amp;gt;
&amp;gt;
&amp;gt;      With ThisDrawing.Utility
&amp;gt;         ThisDrawing.SelectionSets("0").Delete
&amp;gt;         Set ssWall = ThisDrawing.SelectionSets.Add(0)
&amp;gt;         ReDim gpCode(0): ReDim gpData(0)
&amp;gt;         gpCode(0) = 0:   gpData(0) = "AecWall"
&amp;gt;         ssWall.Select acSelectionSetAll, , , gpCode, gpData
&amp;gt;         End With
&amp;gt; "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
&amp;gt; news:40c60887$1_1@newsprd01...
&amp;gt; &amp;gt; Hi All,
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; I am trying to filter out all walls in my drawing. Code runs fine but no
&amp;gt; &amp;gt; walls are added.
&amp;gt; &amp;gt; Could someone Please tell me what I'm doing wrong. Or could I do it
&amp;gt; eaiser.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; Thanks for you time.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; Paul
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/PRICHARDSON&gt;&lt;/PRICHARDSON&gt;</description>
      <pubDate>Tue, 08 Jun 2004 19:25:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052760#M53498</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-08T19:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: SelectionSet Filters v3.3</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052761#M53499</link>
      <description>You beat me to it.  :)

-- 
Matt W

There are 3 kinds of people:
  Those who can count, and those who can't.

"Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
news:40c612ad$1_3@newsprd01...
| "Aec_Wall" go figure.
| "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
| news:40c608f2$1_1@newsprd01...
| &amp;gt; Sorry. Forgot code.
| &amp;gt;
| &amp;gt; Dim gpCode() As Integer
| &amp;gt; Dim gpData As Variant
| &amp;gt;
| &amp;gt; 'On Error Resume Next
| &amp;gt;
| &amp;gt;
| &amp;gt;      With ThisDrawing.Utility
| &amp;gt;         ThisDrawing.SelectionSets("0").Delete
| &amp;gt;         Set ssWall = ThisDrawing.SelectionSets.Add(0)
| &amp;gt;         ReDim gpCode(0): ReDim gpData(0)
| &amp;gt;         gpCode(0) = 0:   gpData(0) = "AecWall"
| &amp;gt;         ssWall.Select acSelectionSetAll, , , gpCode, gpData
| &amp;gt;         End With
| &amp;gt; "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
| &amp;gt; news:40c60887$1_1@newsprd01...
| &amp;gt; &amp;gt; Hi All,
| &amp;gt; &amp;gt;
| &amp;gt; &amp;gt; I am trying to filter out all walls in my drawing. Code runs fine but
no
| &amp;gt; &amp;gt; walls are added.
| &amp;gt; &amp;gt; Could someone Please tell me what I'm doing wrong. Or could I do it
| &amp;gt; eaiser.
| &amp;gt; &amp;gt;
| &amp;gt; &amp;gt; Thanks for you time.
| &amp;gt; &amp;gt;
| &amp;gt; &amp;gt; Paul
| &amp;gt; &amp;gt;
| &amp;gt; &amp;gt;
| &amp;gt;
| &amp;gt;
|
|&lt;/PRICHARDSON&gt;&lt;/PRICHARDSON&gt;&lt;/PRICHARDSON&gt;</description>
      <pubDate>Tue, 08 Jun 2004 19:28:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052761#M53499</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-08T19:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: SelectionSet Filters v3.3</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052762#M53500</link>
      <description>"Aec_Wall"
"Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
news:40c608f2$1_1@newsprd01...
&amp;gt; Sorry. Forgot code.
&amp;gt;
&amp;gt; Dim gpCode() As Integer
&amp;gt; Dim gpData As Variant
&amp;gt;
&amp;gt; 'On Error Resume Next
&amp;gt;
&amp;gt;
&amp;gt;      With ThisDrawing.Utility
&amp;gt;         ThisDrawing.SelectionSets("0").Delete
&amp;gt;         Set ssWall = ThisDrawing.SelectionSets.Add(0)
&amp;gt;         ReDim gpCode(0): ReDim gpData(0)
&amp;gt;         gpCode(0) = 0:   gpData(0) = "AecWall"
&amp;gt;         ssWall.Select acSelectionSetAll, , , gpCode, gpData
&amp;gt;         End With
&amp;gt; "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
&amp;gt; news:40c60887$1_1@newsprd01...
&amp;gt; &amp;gt; Hi All,
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; I am trying to filter out all walls in my drawing. Code runs fine but no
&amp;gt; &amp;gt; walls are added.
&amp;gt; &amp;gt; Could someone Please tell me what I'm doing wrong. Or could I do it
&amp;gt; eaiser.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; Thanks for you time.
&amp;gt; &amp;gt;
&amp;gt; &amp;gt; Paul
&amp;gt; &amp;gt;
&amp;gt; &amp;gt;
&amp;gt;
&amp;gt;&lt;/PRICHARDSON&gt;&lt;/PRICHARDSON&gt;</description>
      <pubDate>Tue, 08 Jun 2004 20:50:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052762#M53500</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-08T20:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: SelectionSet Filters v3.3</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052763#M53501</link>
      <description>Thanks Matt. I have a bunch of other broken code it you feel bad. ha.
"Matt W" &lt;NOSPAM&gt; wrote in message
news:40c6136a_2@newsprd01...
&amp;gt; You beat me to it.  :)
&amp;gt;
&amp;gt; -- 
&amp;gt; Matt W
&amp;gt;
&amp;gt; There are 3 kinds of people:
&amp;gt;   Those who can count, and those who can't.
&amp;gt;
&amp;gt; "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
&amp;gt; news:40c612ad$1_3@newsprd01...
&amp;gt; | "Aec_Wall" go figure.
&amp;gt; | "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
&amp;gt; | news:40c608f2$1_1@newsprd01...
&amp;gt; | &amp;gt; Sorry. Forgot code.
&amp;gt; | &amp;gt;
&amp;gt; | &amp;gt; Dim gpCode() As Integer
&amp;gt; | &amp;gt; Dim gpData As Variant
&amp;gt; | &amp;gt;
&amp;gt; | &amp;gt; 'On Error Resume Next
&amp;gt; | &amp;gt;
&amp;gt; | &amp;gt;
&amp;gt; | &amp;gt;      With ThisDrawing.Utility
&amp;gt; | &amp;gt;         ThisDrawing.SelectionSets("0").Delete
&amp;gt; | &amp;gt;         Set ssWall = ThisDrawing.SelectionSets.Add(0)
&amp;gt; | &amp;gt;         ReDim gpCode(0): ReDim gpData(0)
&amp;gt; | &amp;gt;         gpCode(0) = 0:   gpData(0) = "AecWall"
&amp;gt; | &amp;gt;         ssWall.Select acSelectionSetAll, , , gpCode, gpData
&amp;gt; | &amp;gt;         End With
&amp;gt; | &amp;gt; "Paul Richardson" &lt;PRICHARDSON&gt; wrote in message
&amp;gt; | &amp;gt; news:40c60887$1_1@newsprd01...
&amp;gt; | &amp;gt; &amp;gt; Hi All,
&amp;gt; | &amp;gt; &amp;gt;
&amp;gt; | &amp;gt; &amp;gt; I am trying to filter out all walls in my drawing. Code runs fine
but
&amp;gt; no
&amp;gt; | &amp;gt; &amp;gt; walls are added.
&amp;gt; | &amp;gt; &amp;gt; Could someone Please tell me what I'm doing wrong. Or could I do it
&amp;gt; | &amp;gt; eaiser.
&amp;gt; | &amp;gt; &amp;gt;
&amp;gt; | &amp;gt; &amp;gt; Thanks for you time.
&amp;gt; | &amp;gt; &amp;gt;
&amp;gt; | &amp;gt; &amp;gt; Paul
&amp;gt; | &amp;gt; &amp;gt;
&amp;gt; | &amp;gt; &amp;gt;
&amp;gt; | &amp;gt;
&amp;gt; | &amp;gt;
&amp;gt; |
&amp;gt; |
&amp;gt;
&amp;gt;&lt;/PRICHARDSON&gt;&lt;/PRICHARDSON&gt;&lt;/PRICHARDSON&gt;&lt;/NOSPAM&gt;</description>
      <pubDate>Wed, 09 Jun 2004 10:51:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selectionset-filters-v3-3/m-p/1052763#M53501</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2004-06-09T10:51:39Z</dc:date>
    </item>
  </channel>
</rss>

