<?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 Revisit in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424811#M83920</link>
    <description>Referring back to my original message:&lt;BR /&gt;
"Selection Set with relational filter" posted on:&lt;BR /&gt;
Aug/03/05 - 13:09 (EDT)&lt;BR /&gt;
&lt;BR /&gt;
http://discussion.autodesk.com/thread.jspa?threadID=419571&lt;BR /&gt;
&lt;BR /&gt;
I had kind of hoped this problem would have been addressed in Service Pack 1 for AutoCAD 2006, but it was not. Will this ever be fixed, or do I need to go with Tony Tanzillo's fix and reference AutoCAD ActiveX Libraries as well? I am trying to NOT have a reference to AutoCAD's ActiveX libraries at all. &lt;BR /&gt;
If this problem will never be fixed could you (Autodesk) give us an example using P/Invoke?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
CG&lt;BR /&gt;
&lt;BR /&gt;
Oh yeah, Tony, thanks for your help.</description>
    <pubDate>Tue, 06 Sep 2005 20:42:39 GMT</pubDate>
    <dc:creator>cgay</dc:creator>
    <dc:date>2005-09-06T20:42:39Z</dc:date>
    <item>
      <title>Revisit</title>
      <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424811#M83920</link>
      <description>Referring back to my original message:&lt;BR /&gt;
"Selection Set with relational filter" posted on:&lt;BR /&gt;
Aug/03/05 - 13:09 (EDT)&lt;BR /&gt;
&lt;BR /&gt;
http://discussion.autodesk.com/thread.jspa?threadID=419571&lt;BR /&gt;
&lt;BR /&gt;
I had kind of hoped this problem would have been addressed in Service Pack 1 for AutoCAD 2006, but it was not. Will this ever be fixed, or do I need to go with Tony Tanzillo's fix and reference AutoCAD ActiveX Libraries as well? I am trying to NOT have a reference to AutoCAD's ActiveX libraries at all. &lt;BR /&gt;
If this problem will never be fixed could you (Autodesk) give us an example using P/Invoke?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
CG&lt;BR /&gt;
&lt;BR /&gt;
Oh yeah, Tony, thanks for your help.</description>
      <pubDate>Tue, 06 Sep 2005 20:42:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424811#M83920</guid>
      <dc:creator>cgay</dc:creator>
      <dc:date>2005-09-06T20:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Revisit</title>
      <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424812#M83921</link>
      <description>Yes, it will be fixed. Unfortunately, it didn't make it into the SP. Service &lt;BR /&gt;
packs have an extremely high triage bar. I recommend that you use the &lt;BR /&gt;
workarounds posted in the meantime.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
&lt;BR /&gt;
&lt;COUGERAC&gt; wrote in message news:4948509@discussion.autodesk.com...&lt;BR /&gt;
Referring back to my original message:&lt;BR /&gt;
"Selection Set with relational filter" posted on:&lt;BR /&gt;
Aug/03/05 - 13:09 (EDT)&lt;BR /&gt;
&lt;BR /&gt;
http://discussion.autodesk.com/thread.jspa?threadID=419571&lt;BR /&gt;
&lt;BR /&gt;
I had kind of hoped this problem would have been addressed in Service Pack 1 &lt;BR /&gt;
for AutoCAD 2006, but it was not. Will this ever be fixed, or do I need to &lt;BR /&gt;
go with Tony Tanzillo's fix and reference AutoCAD ActiveX Libraries as well? &lt;BR /&gt;
I am trying to NOT have a reference to AutoCAD's ActiveX libraries at all.&lt;BR /&gt;
If this problem will never be fixed could you (Autodesk) give us an example &lt;BR /&gt;
using P/Invoke?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
CG&lt;BR /&gt;
&lt;BR /&gt;
Oh yeah, Tony, thanks for your help.&lt;/COUGERAC&gt;</description>
      <pubDate>Wed, 07 Sep 2005 03:06:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424812#M83921</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-09-07T03:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Revisit</title>
      <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424813#M83922</link>
      <description>A non-ActiveX solution using P/Invoke is possible, but not&lt;BR /&gt;
trivial. That is because the managed selection set is not&lt;BR /&gt;
like the unmanged or 'native' selection set.&lt;BR /&gt;
&lt;BR /&gt;
To do it, you must call acedSSGet() directly through P/Invoke, &lt;BR /&gt;
and hadk the result buffer that you pass in to it, by calling the&lt;BR /&gt;
ResultBuffer's UnmanagedObject.ToPointer() member. There&lt;BR /&gt;
is example code posted here that shows how to do the latter.&lt;BR /&gt;
&lt;BR /&gt;
You don't have to deal with the resulting ADS_NAME, &lt;BR /&gt;
because if there is a selection set, it becomes the Previous &lt;BR /&gt;
selection set and you can just use SelectPrevious to get the &lt;BR /&gt;
managed counterpart.&lt;BR /&gt;
&lt;BR /&gt;
I agree that binding to AutoCAD's type libraries is a problem&lt;BR /&gt;
because of versioning, but there is a way to do late-binding&lt;BR /&gt;
that does not require binding to any type library. You must&lt;BR /&gt;
use reflection and System.Type.InvokeMember().&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 2004/2005/2006&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
&lt;COUGERAC&gt; wrote in message news:4948509@discussion.autodesk.com...&lt;BR /&gt;
Referring back to my original message:&lt;BR /&gt;
"Selection Set with relational filter" posted on:&lt;BR /&gt;
Aug/03/05 - 13:09 (EDT)&lt;BR /&gt;
&lt;BR /&gt;
http://discussion.autodesk.com/thread.jspa?threadID=419571&lt;BR /&gt;
&lt;BR /&gt;
I had kind of hoped this problem would have been addressed in Service Pack 1 for AutoCAD 2006, but it was not. Will this ever be fixed, or do I need to go with Tony Tanzillo's fix and reference AutoCAD ActiveX Libraries as well? I am trying to NOT have a reference to AutoCAD's ActiveX libraries at all. &lt;BR /&gt;
If this problem will never be fixed could you (Autodesk) give us an example using P/Invoke?&lt;BR /&gt;
&lt;BR /&gt;
Thanks,&lt;BR /&gt;
CG&lt;BR /&gt;
&lt;BR /&gt;
Oh yeah, Tony, thanks for your help.&lt;/COUGERAC&gt;</description>
      <pubDate>Wed, 07 Sep 2005 03:58:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424813#M83922</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-09-07T03:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Revisit</title>
      <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424814#M83923</link>
      <description>Albert, Tony:&lt;BR /&gt;
&lt;BR /&gt;
Thank you both for your responses.&lt;BR /&gt;
&lt;BR /&gt;
Albert, If "Service packs have an extremely high triage bar" why would this problem be addressed in a SP or at all? I really hope it makes it into an update of some kind soon. I would like to deploy a solution for my company, but this issue needs to be address first.&lt;BR /&gt;
&lt;BR /&gt;
Tony, I will try to find the example you mentioned and give it a shot.&lt;BR /&gt;
&lt;BR /&gt;
Thank you both,&lt;BR /&gt;
CG</description>
      <pubDate>Wed, 07 Sep 2005 13:45:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424814#M83923</guid>
      <dc:creator>cgay</dc:creator>
      <dc:date>2005-09-07T13:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Revisit</title>
      <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424815#M83924</link>
      <description>I think you are reading too much into my post. I just wanted to assure you &lt;BR /&gt;
that it will be fixed. I didn't give you any specific timeline. Neither did &lt;BR /&gt;
I say that it will be fixed in service pack.&lt;BR /&gt;
&lt;BR /&gt;
Albert&lt;BR /&gt;
&lt;COUGERAC&gt; wrote in message news:4949023@discussion.autodesk.com...&lt;BR /&gt;
Albert, Tony:&lt;BR /&gt;
&lt;BR /&gt;
Thank you both for your responses.&lt;BR /&gt;
&lt;BR /&gt;
Albert, If "Service packs have an extremely high triage bar" why would this &lt;BR /&gt;
problem be addressed in a SP or at all? I really hope it makes it into an &lt;BR /&gt;
update of some kind soon. I would like to deploy a solution for my company, &lt;BR /&gt;
but this issue needs to be address first.&lt;BR /&gt;
&lt;BR /&gt;
Tony, I will try to find the example you mentioned and give it a shot.&lt;BR /&gt;
&lt;BR /&gt;
Thank you both,&lt;BR /&gt;
CG&lt;/COUGERAC&gt;</description>
      <pubDate>Wed, 07 Sep 2005 14:43:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424815#M83924</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-09-07T14:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Revisit</title>
      <link>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424816#M83925</link>
      <description>More than likely it won't be fixed in a SP. IMO, Autodesk's philosophy is to&lt;BR /&gt;
upgrade to the next version.&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;COUGERAC&gt; wrote in message news:4949023@discussion.autodesk.com...&lt;BR /&gt;
Albert, Tony:&lt;BR /&gt;
&lt;BR /&gt;
Thank you both for your responses.&lt;BR /&gt;
&lt;BR /&gt;
Albert, If "Service packs have an extremely high triage bar" why would this&lt;BR /&gt;
problem be addressed in a SP or at all? I really hope it makes it into an&lt;BR /&gt;
update of some kind soon. I would like to deploy a solution for my company,&lt;BR /&gt;
but this issue needs to be address first.&lt;BR /&gt;
&lt;BR /&gt;
Tony, I will try to find the example you mentioned and give it a shot.&lt;BR /&gt;
&lt;BR /&gt;
Thank you both,&lt;BR /&gt;
CG&lt;/COUGERAC&gt;</description>
      <pubDate>Wed, 07 Sep 2005 15:04:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/revisit/m-p/1424816#M83925</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-09-07T15:04:35Z</dc:date>
    </item>
  </channel>
</rss>

