<?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 Re: Selection Set Filter in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223693#M20236</link>
    <description>"Steve" wrote &lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; first, you tell the OP to post to the vba group. then, you don't answer &lt;BR /&gt;
&amp;gt;&amp;gt; their question telling them to look somewhere else. &lt;BR /&gt;
&lt;BR /&gt;
There's plenty of people here that can offer help, and being too lazy to read the docs to find what you need is something I don't execuse. It's all right there in the docs.  And there's plenty of helpful folks here that can point the OP to existing posts or a search term that will find what he needs.&lt;BR /&gt;
&lt;BR /&gt;
You can try as much as you want to make others look bad, but if you think what truly motivates you isn't plainly obvious, think again.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com</description>
    <pubDate>Tue, 08 Apr 2008 19:47:52 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-04-08T19:47:52Z</dc:date>
    <item>
      <title>Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223690#M20233</link>
      <description>I am trying to collect all the dimensions in my -refedit session...&lt;BR /&gt;
&lt;BR /&gt;
My code follows...&lt;BR /&gt;
&lt;BR /&gt;
---snip---&lt;BR /&gt;
&lt;BR /&gt;
Dim ssetObj As AcadSelectionSet&lt;BR /&gt;
&lt;BR /&gt;
ssetObj = objAcad.SelectionSets.Add("SS1")&lt;BR /&gt;
&lt;BR /&gt;
ssetObj.Select(AcSelect.acSelectionSetA ll, , , "0", "DIMROTATED")&lt;BR /&gt;
&lt;BR /&gt;
Dim S1 As AcadDimRotated&lt;BR /&gt;
&lt;BR /&gt;
For Each S1 In ssetObj&lt;BR /&gt;
MsgBox(S1)&lt;BR /&gt;
Next S1&lt;BR /&gt;
&lt;BR /&gt;
---snip---&lt;BR /&gt;
&lt;BR /&gt;
It seems pretty simple...can anyone see what's going wrong or maybe have a better way?&lt;BR /&gt;
&lt;BR /&gt;
All cards and letters appreciated!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I solved my earlier REFEDIT open and closing issues by using the following code (in case anyone can use it)...&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(setq EN1 (entlast)) ")&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(command ""-refedit"" &amp;amp; ""(cadr EN1)"" &amp;amp; vbCr &amp;amp; ""ok"" &amp;amp; vbCr &amp;amp; ""a"" &amp;amp; vbCr &amp;amp; vbCr) ")&lt;BR /&gt;
&lt;BR /&gt;
DimStyleAdjust() '&amp;lt;-- THIS IS THE SUB WHERE I NEED TO PUT MY DIMENSION SELECTION SET STUFF&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(command ""refclose"" ""S"") ")&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ROCK ON...TALK 'ATCHA LATER...keep those cards and letters coming!</description>
      <pubDate>Fri, 04 Apr 2008 19:36:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223690#M20233</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-04T19:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223691#M20234</link>
      <description>(So no one is confused, this is VB.NET code, and the Set statements are not needed).&lt;BR /&gt;
&lt;BR /&gt;
Consult the the VBA/Active Developer's help for how to building the arguments needed to get a filtered selection.&lt;BR /&gt;
&lt;BR /&gt;
You don't pass the entity type as a string to Select. You have to construct two arrays (one holding the DXF codes and the other holding the values) and pass that to Select().&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;PELLACAD&gt; wrote in message news:5895846@discussion.autodesk.com...&lt;BR /&gt;
I am trying to collect all the dimensions in my -refedit session...&lt;BR /&gt;
&lt;BR /&gt;
My code follows...&lt;BR /&gt;
&lt;BR /&gt;
---snip---&lt;BR /&gt;
&lt;BR /&gt;
Dim ssetObj As AcadSelectionSet&lt;BR /&gt;
&lt;BR /&gt;
ssetObj = objAcad.SelectionSets.Add("SS1")&lt;BR /&gt;
&lt;BR /&gt;
ssetObj.Select(AcSelect.acSelectionSetA ll, , , "0", "DIMROTATED")&lt;BR /&gt;
&lt;BR /&gt;
Dim S1 As AcadDimRotated&lt;BR /&gt;
&lt;BR /&gt;
For Each S1 In ssetObj&lt;BR /&gt;
MsgBox(S1)&lt;BR /&gt;
Next S1&lt;BR /&gt;
&lt;BR /&gt;
---snip---&lt;BR /&gt;
&lt;BR /&gt;
It seems pretty simple...can anyone see what's going wrong or maybe have a better way?&lt;BR /&gt;
&lt;BR /&gt;
All cards and letters appreciated!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I solved my earlier REFEDIT open and closing issues by using the following code (in case anyone can use it)...&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(setq EN1 (entlast)) ")&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(command ""-refedit"" &amp;amp; ""(cadr EN1)"" &amp;amp; vbCr &amp;amp; ""ok"" &amp;amp; vbCr &amp;amp; ""a"" &amp;amp; vbCr &amp;amp; vbCr) ")&lt;BR /&gt;
&lt;BR /&gt;
DimStyleAdjust() '&amp;lt;-- THIS IS THE SUB WHERE I NEED TO PUT MY DIMENSION SELECTION SET STUFF&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(command ""refclose"" ""S"") ")&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ROCK ON...TALK 'ATCHA LATER...keep those cards and letters coming!&lt;/PELLACAD&gt;</description>
      <pubDate>Fri, 04 Apr 2008 20:11:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223691#M20234</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-04T20:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223692#M20235</link>
      <description>first, you tell the OP to post to the vba group. then, you don't answer &lt;BR /&gt;
their question telling them to look somewhere else. unfortunately, there's a &lt;BR /&gt;
bit more to it. here is an example in vba to do what the OP wanted. if you &lt;BR /&gt;
need it ported to vb.net let me know.&lt;BR /&gt;
&lt;BR /&gt;
Public Sub Test()&lt;BR /&gt;
Dim GroupCode(0) As Integer&lt;BR /&gt;
Dim DataValue(0) As Variant&lt;BR /&gt;
Dim oSS As AcadSelectionSet&lt;BR /&gt;
Dim oEntity As AcadEntity&lt;BR /&gt;
Dim oDimRotated As AcadDimRotated&lt;BR /&gt;
&lt;BR /&gt;
  On Error Resume Next&lt;BR /&gt;
  'delete any previously existing selection set&lt;BR /&gt;
  ThisDrawing.SelectionSets("SS1").Delete&lt;BR /&gt;
  'create the desired selection set&lt;BR /&gt;
  Set oSS = ThisDrawing.SelectionSets.Add("SS1")&lt;BR /&gt;
&lt;BR /&gt;
  'define the parameters for selecting objects&lt;BR /&gt;
  GroupCode(0) = 0&lt;BR /&gt;
  DataValue(0) = "DIMENSION"&lt;BR /&gt;
  'populate the selections set&lt;BR /&gt;
  ThisDrawing.SelectionSets("SS1").Select acSelectionSetAll, , , GroupCode, &lt;BR /&gt;
DataValue&lt;BR /&gt;
&lt;BR /&gt;
  For Each oEntity In oSS&lt;BR /&gt;
    If TypeOf oEntity Is AcadDimRotated Then&lt;BR /&gt;
      Set oDimRotated = oEntity&lt;BR /&gt;
      MsgBox oDimRotated.Measurement&lt;BR /&gt;
    End If&lt;BR /&gt;
  Next oEntity&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5895925@discussion.autodesk.com...&lt;BR /&gt;
(So no one is confused, this is VB.NET code, and the Set statements are not &lt;BR /&gt;
needed).&lt;BR /&gt;
&lt;BR /&gt;
Consult the the VBA/Active Developer's help for how to building the &lt;BR /&gt;
arguments needed to get a filtered selection.&lt;BR /&gt;
&lt;BR /&gt;
You don't pass the entity type as a string to Select. You have to construct &lt;BR /&gt;
two arrays (one holding the DXF codes and the other holding the values) and &lt;BR /&gt;
pass that to Select().&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;PELLACAD&gt; wrote in message news:5895846@discussion.autodesk.com...&lt;BR /&gt;
I am trying to collect all the dimensions in my -refedit session...&lt;BR /&gt;
&lt;BR /&gt;
My code follows...&lt;BR /&gt;
&lt;BR /&gt;
---snip---&lt;BR /&gt;
&lt;BR /&gt;
Dim ssetObj As AcadSelectionSet&lt;BR /&gt;
&lt;BR /&gt;
ssetObj = objAcad.SelectionSets.Add("SS1")&lt;BR /&gt;
&lt;BR /&gt;
ssetObj.Select(AcSelect.acSelectionSetA ll, , , "0", "DIMROTATED")&lt;BR /&gt;
&lt;BR /&gt;
Dim S1 As AcadDimRotated&lt;BR /&gt;
&lt;BR /&gt;
For Each S1 In ssetObj&lt;BR /&gt;
MsgBox(S1)&lt;BR /&gt;
Next S1&lt;BR /&gt;
&lt;BR /&gt;
---snip---&lt;BR /&gt;
&lt;BR /&gt;
It seems pretty simple...can anyone see what's going wrong or maybe have a &lt;BR /&gt;
better way?&lt;BR /&gt;
&lt;BR /&gt;
All cards and letters appreciated!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
I solved my earlier REFEDIT open and closing issues by using the following &lt;BR /&gt;
code (in case anyone can use it)...&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(setq EN1 (entlast)) ")&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(command ""-refedit"" &amp;amp; ""(cadr EN1)"" &amp;amp; &lt;BR /&gt;
vbCr &amp;amp; ""ok"" &amp;amp; vbCr &amp;amp; ""a"" &amp;amp; vbCr &amp;amp; vbCr) ")&lt;BR /&gt;
&lt;BR /&gt;
DimStyleAdjust() '&amp;lt;-- THIS IS THE SUB WHERE I NEED TO PUT MY DIMENSION &lt;BR /&gt;
SELECTION SET STUFF&lt;BR /&gt;
&lt;BR /&gt;
objAcad.ActiveDocument.SendCommand("(command ""refclose"" ""S"") ")&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
ROCK ON...TALK 'ATCHA LATER...keep those cards and letters coming!&lt;/PELLACAD&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Tue, 08 Apr 2008 13:15:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223692#M20235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-08T13:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223693#M20236</link>
      <description>"Steve" wrote &lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; first, you tell the OP to post to the vba group. then, you don't answer &lt;BR /&gt;
&amp;gt;&amp;gt; their question telling them to look somewhere else. &lt;BR /&gt;
&lt;BR /&gt;
There's plenty of people here that can offer help, and being too lazy to read the docs to find what you need is something I don't execuse. It's all right there in the docs.  And there's plenty of helpful folks here that can point the OP to existing posts or a search term that will find what he needs.&lt;BR /&gt;
&lt;BR /&gt;
You can try as much as you want to make others look bad, but if you think what truly motivates you isn't plainly obvious, think again.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com</description>
      <pubDate>Tue, 08 Apr 2008 19:47:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223693#M20236</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-08T19:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223694#M20237</link>
      <description>Huh? what the hell is your problem?&lt;BR /&gt;
&lt;BR /&gt;
The guy posts in the .NET group, you tell him to go post in the vba group. &lt;BR /&gt;
he posts in the vba group and you tell him to go look at the documentation. &lt;BR /&gt;
what the hell kinda help is that? i think he probably had a good idea that &lt;BR /&gt;
was an option all along.&lt;BR /&gt;
&lt;BR /&gt;
i posted an answer while you posted your opinion.&lt;BR /&gt;
&lt;BR /&gt;
as far as who is looking bad, right about now, i'd say you are more than one &lt;BR /&gt;
up on me in that category.&lt;BR /&gt;
&lt;BR /&gt;
i had no intention of trying to make you look bad [you're doing a damn good &lt;BR /&gt;
job of that on your own].&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5898660@discussion.autodesk.com...&lt;BR /&gt;
"Steve" wrote&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; first, you tell the OP to post to the vba group. then, you don't answer&lt;BR /&gt;
&amp;gt;&amp;gt; their question telling them to look somewhere else.&lt;BR /&gt;
&lt;BR /&gt;
There's plenty of people here that can offer help, and being too lazy to &lt;BR /&gt;
read the docs to find what you need is something I don't execuse. It's all &lt;BR /&gt;
right there in the docs.  And there's plenty of helpful folks here that can &lt;BR /&gt;
point the OP to existing posts or a search term that will find what he &lt;BR /&gt;
needs.&lt;BR /&gt;
&lt;BR /&gt;
You can try as much as you want to make others look bad, but if you think &lt;BR /&gt;
what truly motivates you isn't plainly obvious, think again.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Tue, 08 Apr 2008 20:34:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223694#M20237</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-08T20:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223695#M20238</link>
      <description>&amp;gt;&amp;gt;what the hell kinda help is that&lt;BR /&gt;
Good help? He was first directed to the proper group and then to where he could immediately find a sample to learn&lt;BR /&gt;
from instead of waiting for you to post the same code that has been posted here ad nauseum... He was even told&lt;BR /&gt;
what was wrong with his code!&lt;BR /&gt;
&lt;BR /&gt;
Advice on learning to use the help menu is not an opinion - it's invaluable!&lt;BR /&gt;
&lt;BR /&gt;
"Steve" &lt;NOWAY&gt; wrote in message news:5898725@discussion.autodesk.com...&lt;BR /&gt;
Huh? what the hell is your problem?&lt;BR /&gt;
&lt;BR /&gt;
The guy posts in the .NET group, you tell him to go post in the vba group.&lt;BR /&gt;
he posts in the vba group and you tell him to go look at the documentation.&lt;BR /&gt;
what the hell kinda help is that? i think he probably had a good idea that&lt;BR /&gt;
was an option all along.&lt;BR /&gt;
&lt;BR /&gt;
i posted an answer while you posted your opinion.&lt;BR /&gt;
&lt;BR /&gt;
as far as who is looking bad, right about now, i'd say you are more than one&lt;BR /&gt;
up on me in that category.&lt;BR /&gt;
&lt;BR /&gt;
i had no intention of trying to make you look bad [you're doing a damn good&lt;BR /&gt;
job of that on your own].&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:5898660@discussion.autodesk.com...&lt;BR /&gt;
"Steve" wrote&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; first, you tell the OP to post to the vba group. then, you don't answer&lt;BR /&gt;
&amp;gt;&amp;gt; their question telling them to look somewhere else.&lt;BR /&gt;
&lt;BR /&gt;
There's plenty of people here that can offer help, and being too lazy to&lt;BR /&gt;
read the docs to find what you need is something I don't execuse. It's all&lt;BR /&gt;
right there in the docs.  And there's plenty of helpful folks here that can&lt;BR /&gt;
point the OP to existing posts or a search term that will find what he&lt;BR /&gt;
needs.&lt;BR /&gt;
&lt;BR /&gt;
You can try as much as you want to make others look bad, but if you think&lt;BR /&gt;
what truly motivates you isn't plainly obvious, think again.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOWAY&gt;</description>
      <pubDate>Wed, 09 Apr 2008 02:58:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223695#M20238</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T02:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223696#M20239</link>
      <description>&amp;gt;&amp;gt; i posted an answer while you posted your opinion.&lt;BR /&gt;
&lt;BR /&gt;
You handed him a fish.&lt;BR /&gt;
&lt;BR /&gt;
I told him where to find, and how to catch fish.&lt;BR /&gt;
&lt;BR /&gt;
Posting answers showing basic/common tasks that have already been shown in posts here hundreds of times over and easily available via a search; pointing him to answers that are already clearly illustrated in the docs, is helping him learn how to find answers himself, rather than catering to someone's childish sense of self-importance.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com</description>
      <pubDate>Wed, 09 Apr 2008 08:35:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223696#M20239</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T08:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223697#M20240</link>
      <description>you have your way, i have mind. guess that's why i have never gotten &lt;BR /&gt;
anything from what you seem to post.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5899061@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt; i posted an answer while you posted your opinion.&lt;BR /&gt;
&lt;BR /&gt;
You handed him a fish.&lt;BR /&gt;
&lt;BR /&gt;
I told him where to find, and how to catch fish.&lt;BR /&gt;
&lt;BR /&gt;
Posting answers showing basic/common tasks that have already been shown in &lt;BR /&gt;
posts here hundreds of times over and easily available via a search; &lt;BR /&gt;
pointing him to answers that are already clearly illustrated in the docs, is &lt;BR /&gt;
helping him learn how to find answers himself, rather than catering to &lt;BR /&gt;
someone's childish sense of self-importance.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Wed, 09 Apr 2008 11:29:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223697#M20240</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T11:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223698#M20241</link>
      <description>&amp;gt;&amp;gt;you have your way, i have mind. guess that's why i have never gotten &lt;BR /&gt;
anything from what you seem to post. &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
That's only because most of it is over your head.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com</description>
      <pubDate>Wed, 09 Apr 2008 12:23:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223698#M20241</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T12:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223699#M20242</link>
      <description>why do you seem to begrudge everything anyone else does as if "well, it's &lt;BR /&gt;
not my idea therefore it wrong". others have their way of doing things that &lt;BR /&gt;
i guarantee does not fit into your little world. just because i show someone &lt;BR /&gt;
how to fish does not guarantee they'll be able to catch any fish. i may have &lt;BR /&gt;
to keep showing them and showing them until one day they get it; hopefully. &lt;BR /&gt;
it's the same way with people trying to program maybe for the first time. or &lt;BR /&gt;
it's not something they do on a regular basis.&lt;BR /&gt;
&lt;BR /&gt;
i see these forums as an extension to a classroom setting. so let me ask &lt;BR /&gt;
you, if you had paid good money to attend a class and you ask the instructor &lt;BR /&gt;
a question; he told you nothing about the answer instead he just says to &lt;BR /&gt;
look in the manual. would you find that an acceptable teaching method? i &lt;BR /&gt;
think i would promptly ask for a refund quite frankly. the whole point of &lt;BR /&gt;
going to the class, in person, is to get specific help on a particular &lt;BR /&gt;
subject from someone who is suppose to know something about the subject.&lt;BR /&gt;
&lt;BR /&gt;
that's the way i think most people view these newsgroups; as a means of &lt;BR /&gt;
getting specific help to a particular problem. while it may be true they &lt;BR /&gt;
have not even looked at the help docs the  first time, i don't know that and &lt;BR /&gt;
it's not my place to judge.&lt;BR /&gt;
&lt;BR /&gt;
i have freely choosen to participate in the newsgroup by providing whatever &lt;BR /&gt;
help i can short of writing the entire application for them. if i don't have &lt;BR /&gt;
any help to offer then i refrain from the thread. i think that anyone could &lt;BR /&gt;
go to any newsgroup and respond with "go look at the help documentation". if &lt;BR /&gt;
that's all they get then why bother going to a newsgroup in the first place?&lt;BR /&gt;
&lt;BR /&gt;
attempting to belittle me only solidifies your insecurities not only as a &lt;BR /&gt;
programmer but as a teacher of the subject you claim to know. it's obvious &lt;BR /&gt;
that good communication skills should not ever appear on your resume.&lt;BR /&gt;
&lt;BR /&gt;
i posted a viable answer and the only thing you have posted is hatred toward &lt;BR /&gt;
my posting.&lt;BR /&gt;
&lt;BR /&gt;
if there is something wrong with the code i posted then please let all of us &lt;BR /&gt;
know what it is. I can take it but your pansy tirades don't bother me. &lt;BR /&gt;
otherwise, do us all a favor and shut the hell up!&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5899199@discussion.autodesk.com...&lt;BR /&gt;
&amp;gt;&amp;gt;you have your way, i have mind. guess that's why i have never gotten&lt;BR /&gt;
anything from what you seem to post. &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
That's only because most of it is over your head.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Wed, 09 Apr 2008 14:03:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223699#M20242</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T14:03:23Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223700#M20243</link>
      <description>"if you had paid good money to attend a class and you ask the instructor a question; he told you nothing about the answer instead he just says to look in the manual. would you find that an acceptable teaching method?"&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Unfortunately, this is exactly how students are treated in university level courses. If you can't do the research on your own, you don't deserve the degree you are working for.&lt;BR /&gt;
&lt;BR /&gt;
Or at least, that's "their" opinion on it... &lt;BR /&gt;
&lt;BR /&gt;
I'm not choosing sides here, but I feel I need to address the sample you posted. The original poster is trying to modify a specific block table (noted by the use of REFEDIT), and your sample code will select objects in the active drawing's modelspace blocktable only.&lt;BR /&gt;
&lt;BR /&gt;
I don't really know if a specific blocktable can be specified when using the AcadSelectionset object. I think it defaults to modelspace, meaning it has no use to modify block definitions.&lt;BR /&gt;
&lt;BR /&gt;
Someone feel free to correct me if I'm wrong though. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;</description>
      <pubDate>Wed, 09 Apr 2008 16:29:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223700#M20243</guid>
      <dc:creator>jbooth</dc:creator>
      <dc:date>2008-04-09T16:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223701#M20244</link>
      <description>You seem to be stuck on your own failure to see the obvious, which is that there is plenty of learning material already here, available to anyone that needs it.&lt;BR /&gt;
&lt;BR /&gt;
However, in spite of that you chose to chastise me for encouraging someone to take matters into their own hands and find it, and in the process also learn how to find what they need when they need it, and without having to ask questions that have been asked and answered many, many times over, or wait for someone like you to answer one of them, yet one more time.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com</description>
      <pubDate>Wed, 09 Apr 2008 19:33:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223701#M20244</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T19:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223702#M20245</link>
      <description>the answer is not in the help files. of course you'd figured that out if you &lt;BR /&gt;
had actually looked instead of attempting to minimize me.&lt;BR /&gt;
&lt;BR /&gt;
i seriously doubt the user would have figured it out without actual help &lt;BR /&gt;
from another user. we know you sure didn't figured it out. it's so simple &lt;BR /&gt;
but you're trying your best to turn it into rocket science.&lt;BR /&gt;
&lt;BR /&gt;
as far as other posts are concerned, big deal. you have wasted 10 times more &lt;BR /&gt;
time trying to degrade me than i spent writing that bit of code from &lt;BR /&gt;
scratch. i write code from memory faster than you can look it up.&lt;BR /&gt;
&lt;BR /&gt;
i am stuck however. stuck on why you insist on badgering users on this &lt;BR /&gt;
newsgroup when they disagree with your particular point of view. there was &lt;BR /&gt;
nothing wrong with your answer. it was, in my humble opinion, not good &lt;BR /&gt;
enough.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5899825@discussion.autodesk.com...&lt;BR /&gt;
You seem to be stuck on your own failure to see the obvious, which is that &lt;BR /&gt;
there is plenty of learning material already here, available to anyone that &lt;BR /&gt;
needs it.&lt;BR /&gt;
&lt;BR /&gt;
However, in spite of that you chose to chastise me for encouraging someone &lt;BR /&gt;
to take matters into their own hands and find it, and in the process also &lt;BR /&gt;
learn how to find what they need when they need it, and without having to &lt;BR /&gt;
ask questions that have been asked and answered many, many times over, or &lt;BR /&gt;
wait for someone like you to answer one of them, yet one more time.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Wed, 09 Apr 2008 19:54:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223702#M20245</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T19:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223703#M20246</link>
      <description>&amp;gt;&amp;gt;the answer is not in the help files&lt;BR /&gt;
Here is the help section on Filtered Selection Sets. If you look&lt;BR /&gt;
in the code sample section - there are 3 full samples using filters.&lt;BR /&gt;
&lt;BR /&gt;
[code]&lt;BR /&gt;
Use Filter Lists to Define Selection Set Rules &lt;BR /&gt;
 &lt;BR /&gt;
 &lt;BR /&gt;
Filter lists are composed of pairs of arguments. The first argument identifies the type of filter (for example, an object), and the second argument specifies the value you are filtering on (for example, circles). The filter type is a DXF group code that specifies which filter to use. A few of the most common filter types are listed here.&lt;BR /&gt;
&lt;BR /&gt;
DXF codes for common filters&lt;BR /&gt;
 &lt;BR /&gt;
DXF code&lt;BR /&gt;
 Filter type&lt;BR /&gt;
 &lt;BR /&gt;
0&lt;BR /&gt;
 Object Type (String)&lt;BR /&gt;
&lt;BR /&gt;
Such as “Line,” “Circle,” “Arc,” and so forth.&lt;BR /&gt;
 &lt;BR /&gt;
2&lt;BR /&gt;
 Object Name (String)&lt;BR /&gt;
&lt;BR /&gt;
The table (given) name of a named object.&lt;BR /&gt;
 &lt;BR /&gt;
8&lt;BR /&gt;
 Layer Name (String)&lt;BR /&gt;
&lt;BR /&gt;
Such as “Layer 0.”&lt;BR /&gt;
 &lt;BR /&gt;
60&lt;BR /&gt;
 Object Visibility (Integer)&lt;BR /&gt;
&lt;BR /&gt;
Use 0 = visible, 1 = invisible.&lt;BR /&gt;
 &lt;BR /&gt;
62&lt;BR /&gt;
 Color Number (Integer)&lt;BR /&gt;
&lt;BR /&gt;
Numeric index values ranging from 0 to 256.&lt;BR /&gt;
&lt;BR /&gt;
Zero indicates BYBLOCK. 256 indicates BYLAYER. A negative value indicates that the layer is turned off. &lt;BR /&gt;
 &lt;BR /&gt;
67&lt;BR /&gt;
 Model/paper space indicator (Integer)&lt;BR /&gt;
&lt;BR /&gt;
Use 0 or omitted = model space, 1 = paper space.&lt;BR /&gt;
 &lt;BR /&gt;
&lt;BR /&gt;
For a complete list of DXF group codes, see Group Code Value Types in the DXF Reference.&lt;BR /&gt;
&lt;BR /&gt;
The filter arguments are declared as arrays. The filter type is declared as an integer and the filter value as a variant. Each filter type must be paired with a filter value. For example:&lt;BR /&gt;
&lt;BR /&gt;
FilterType(0) = 0            'Indicates filter refers to an object type&lt;BR /&gt;
FilterData(0) = "Circle"     'Indicates the object type is "Circle"&lt;BR /&gt;
Specify a single selection criterion for a selection set&lt;BR /&gt;
&lt;BR /&gt;
The following code prompts users to select objects to be included in a selection set, but only adds the selected object if it is a circle:&lt;BR /&gt;
&lt;BR /&gt;
Sub Ch4_FilterMtext()&lt;BR /&gt;
   Dim sstext As AcadSelectionSet&lt;BR /&gt;
   Dim FilterType(0) As Integer&lt;BR /&gt;
   Dim FilterData(0) As Variant&lt;BR /&gt;
   Set sstext = ThisDrawing.SelectionSets.Add("SS2")&lt;BR /&gt;
   FilterType(0) = 0&lt;BR /&gt;
   FilterData(0) = "Circle"&lt;BR /&gt;
   sstext.SelectOnScreen FilterType, FilterData&lt;BR /&gt;
End Sub&lt;BR /&gt;
[/code]</description>
      <pubDate>Wed, 09 Apr 2008 21:00:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223703#M20246</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T21:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223704#M20247</link>
      <description>"Steve" &lt;NOWAY&gt; wrote &lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; the answer is not in the help files. of course you'd figured that out if you &lt;BR /&gt;
had actually looked instead of attempting to minimize me. &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
I'm not minimizing you, you're minimizing yourself.&lt;BR /&gt;
&lt;BR /&gt;
ActiveX and VBA Developers Guide &amp;gt;&lt;BR /&gt;
   Create and Edit AutoCAD Entities  &amp;gt;&lt;BR /&gt;
      Work with Selection Sets &amp;gt;&lt;BR /&gt;
         Define Rules for Selection Sets &amp;gt;&lt;BR /&gt;
            Use Filter Lists to Define Selection Set Rules&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
i seriously doubt the user would have figured it out without actual help &lt;BR /&gt;
from another user. we know you sure didn't figured it out. it's so simple &lt;BR /&gt;
but you're trying your best to turn it into rocket science.&lt;BR /&gt;
&lt;BR /&gt;
as far as other posts are concerned, big deal. you have wasted 10 times more &lt;BR /&gt;
time trying to degrade me than i spent writing that bit of code from &lt;BR /&gt;
scratch. i write code from memory faster than you can look it up.&lt;BR /&gt;
&lt;BR /&gt;
i am stuck however. stuck on why you insist on badgering users on this &lt;BR /&gt;
newsgroup when they disagree with your particular point of view. there was &lt;BR /&gt;
nothing wrong with your answer. it was, in my humble opinion, not good &lt;BR /&gt;
enough.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5899825@discussion.autodesk.com...&lt;BR /&gt;
You seem to be stuck on your own failure to see the obvious, which is that &lt;BR /&gt;
there is plenty of learning material already here, available to anyone that &lt;BR /&gt;
needs it.&lt;BR /&gt;
&lt;BR /&gt;
However, in spite of that you chose to chastise me for encouraging someone &lt;BR /&gt;
to take matters into their own hands and find it, and in the process also &lt;BR /&gt;
learn how to find what they need when they need it, and without having to &lt;BR /&gt;
ask questions that have been asked and answered many, many times over, or &lt;BR /&gt;
wait for someone like you to answer one of them, yet one more time.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOWAY&gt;</description>
      <pubDate>Wed, 09 Apr 2008 21:16:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223704#M20247</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-09T21:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223705#M20248</link>
      <description>as you have pointed out, the answer that i posted is no where to be found in &lt;BR /&gt;
the help file. i do appreciate you confirming what i said.&lt;BR /&gt;
&lt;BR /&gt;
now go away and come back when you have something useful to say to the &lt;BR /&gt;
group.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5899986@discussion.autodesk.com...&lt;BR /&gt;
"Steve" &lt;NOWAY&gt; wrote&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; the answer is not in the help files. of course you'd figured that out if &lt;BR /&gt;
&amp;gt;&amp;gt; you&lt;BR /&gt;
had actually looked instead of attempting to minimize me. &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
I'm not minimizing you, you're minimizing yourself.&lt;BR /&gt;
&lt;BR /&gt;
ActiveX and VBA Developers Guide &amp;gt;&lt;BR /&gt;
   Create and Edit AutoCAD Entities  &amp;gt;&lt;BR /&gt;
      Work with Selection Sets &amp;gt;&lt;BR /&gt;
         Define Rules for Selection Sets &amp;gt;&lt;BR /&gt;
            Use Filter Lists to Define Selection Set Rules&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
i seriously doubt the user would have figured it out without actual help&lt;BR /&gt;
from another user. we know you sure didn't figured it out. it's so simple&lt;BR /&gt;
but you're trying your best to turn it into rocket science.&lt;BR /&gt;
&lt;BR /&gt;
as far as other posts are concerned, big deal. you have wasted 10 times more&lt;BR /&gt;
time trying to degrade me than i spent writing that bit of code from&lt;BR /&gt;
scratch. i write code from memory faster than you can look it up.&lt;BR /&gt;
&lt;BR /&gt;
i am stuck however. stuck on why you insist on badgering users on this&lt;BR /&gt;
newsgroup when they disagree with your particular point of view. there was&lt;BR /&gt;
nothing wrong with your answer. it was, in my humble opinion, not good&lt;BR /&gt;
enough.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message&lt;BR /&gt;
news:5899825@discussion.autodesk.com...&lt;BR /&gt;
You seem to be stuck on your own failure to see the obvious, which is that&lt;BR /&gt;
there is plenty of learning material already here, available to anyone that&lt;BR /&gt;
needs it.&lt;BR /&gt;
&lt;BR /&gt;
However, in spite of that you chose to chastise me for encouraging someone&lt;BR /&gt;
to take matters into their own hands and find it, and in the process also&lt;BR /&gt;
learn how to find what they need when they need it, and without having to&lt;BR /&gt;
ask questions that have been asked and answered many, many times over, or&lt;BR /&gt;
wait for someone like you to answer one of them, yet one more time.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/TONY.TANZILLO&gt;&lt;/NOWAY&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Thu, 10 Apr 2008 01:33:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223705#M20248</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-10T01:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223706#M20249</link>
      <description>"Steve" &lt;NOWAY&gt; wrote &lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; as you have pointed out, the answer that i posted is no where to be found in &lt;BR /&gt;
the help file. i do appreciate you confirming what i said. &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
Whether or not whatever rank-amateur garbage you posted in your 'answer' is in the docs, or not, is not the point. &lt;BR /&gt;
&lt;BR /&gt;
What the OP needed, is in the docs.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/NOWAY&gt;</description>
      <pubDate>Thu, 10 Apr 2008 15:44:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223706#M20249</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-10T15:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223707#M20250</link>
      <description>"Steve" &lt;NOWAY&gt; wrote:&lt;BR /&gt;
&lt;BR /&gt;
   "the answer that i posted is no where to be found in &lt;BR /&gt;
    the help file"....&lt;BR /&gt;
&lt;BR /&gt;
First it was "the answer is not in the help file"....&lt;BR /&gt;
&lt;BR /&gt;
Now, it is "the answer that I posted [is not in the help file]...&lt;BR /&gt;
&lt;BR /&gt;
IOW, you're too much of a coward to admit you're wrong, even when it's as plain as day. To avoid having to do that, you retreat into semantics. &lt;BR /&gt;
&lt;BR /&gt;
More importantly, everyone here reading this can see that, and see you for what you are.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/NOWAY&gt;</description>
      <pubDate>Thu, 10 Apr 2008 16:02:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223707#M20250</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-10T16:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223708#M20251</link>
      <description>talk about stuck! i've moved on since there's no point in trying to reason &lt;BR /&gt;
with a third grader.&lt;BR /&gt;
&lt;BR /&gt;
i posted a perfectly good answer and you have done nothing but make pansy &lt;BR /&gt;
attempts to degrade my answer. you just hate that you're baiting another &lt;BR /&gt;
user with your half-baked answers didn't work.&lt;BR /&gt;
&lt;BR /&gt;
you live for others to beg for your help instead of willingly offering it. &lt;BR /&gt;
you simply can't accept that someone other than yourself can offer help on &lt;BR /&gt;
this newsgroup. it's all about you isn't Tony?&lt;BR /&gt;
&lt;BR /&gt;
get lost, i'm too busy helping others who appreciate it.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5900769@discussion.autodesk.com...&lt;BR /&gt;
"Steve" &lt;NOWAY&gt; wrote:&lt;BR /&gt;
&lt;BR /&gt;
   "the answer that i posted is no where to be found in&lt;BR /&gt;
    the help file"....&lt;BR /&gt;
&lt;BR /&gt;
First it was "the answer is not in the help file"....&lt;BR /&gt;
&lt;BR /&gt;
Now, it is "the answer that I posted [is not in the help file]...&lt;BR /&gt;
&lt;BR /&gt;
IOW, you're too much of a coward to admit you're wrong, even when it's as &lt;BR /&gt;
plain as day. To avoid having to do that, you retreat into semantics.&lt;BR /&gt;
&lt;BR /&gt;
More importantly, everyone here reading this can see that, and see you for &lt;BR /&gt;
what you are.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/NOWAY&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Thu, 10 Apr 2008 16:15:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223708#M20251</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-10T16:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Set Filter</title>
      <link>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223709#M20252</link>
      <description>no it's not ...&lt;BR /&gt;
&lt;BR /&gt;
the OP wanted to create a filter selection set with rotated dimensions and &lt;BR /&gt;
iterate through the selection for info specific to a rotated dimension. that &lt;BR /&gt;
is not in the docs, period.&lt;BR /&gt;
&lt;BR /&gt;
their attempt was to use 0 and "DIMROTATED" which will not work. you first &lt;BR /&gt;
have to create a selection set of DIMENSIONs and then iterate through that &lt;BR /&gt;
looking for TypeOf "DIMROTATED" and cast that object to an AcadDimRotated &lt;BR /&gt;
object. while it is not rocket science it is not in the help documents.&lt;BR /&gt;
&lt;BR /&gt;
now you can twist this entire conversation around and think that you're &lt;BR /&gt;
proving something to yourself maybe, but your simply wasting your time and &lt;BR /&gt;
my quite frankly.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
"Tony Tanzillo" &lt;TONY.TANZILLO&gt; wrote in message &lt;BR /&gt;
news:5900736@discussion.autodesk.com...&lt;BR /&gt;
"Steve" &lt;NOWAY&gt; wrote&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;&amp;gt; as you have pointed out, the answer that i posted is no where to be found &lt;BR /&gt;
&amp;gt;&amp;gt; in&lt;BR /&gt;
the help file. i do appreciate you confirming what i said. &amp;lt;&amp;lt;&lt;BR /&gt;
&lt;BR /&gt;
Whether or not whatever rank-amateur garbage you posted in your 'answer' is &lt;BR /&gt;
in the docs, or not, is not the point.&lt;BR /&gt;
&lt;BR /&gt;
What the OP needed, is in the docs.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD 2009&lt;BR /&gt;
Supporting AutoCAD 2000 through 2009&lt;BR /&gt;
http://www.acadxtabs.com&lt;/NOWAY&gt;&lt;/TONY.TANZILLO&gt;</description>
      <pubDate>Thu, 10 Apr 2008 16:31:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/selection-set-filter/m-p/2223709#M20252</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-04-10T16:31:32Z</dc:date>
    </item>
  </channel>
</rss>

