<?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 SSGET PROBLEM in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830455#M160605</link>
    <description>I would be very appreciative if someone could help me with what I think is&lt;BR /&gt;
a simple problem. I want to use the SSGET command to select all objects of&lt;BR /&gt;
a particular name that are inside a window that I select.  I know how to&lt;BR /&gt;
select all objects in the drawing of the correct name but I'm not sure how&lt;BR /&gt;
to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
they be obtained within the SSGET.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for any help!&lt;BR /&gt;
&lt;BR /&gt;
Chris E</description>
    <pubDate>Wed, 02 Feb 2000 08:55:51 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2000-02-02T08:55:51Z</dc:date>
    <item>
      <title>SSGET PROBLEM</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830455#M160605</link>
      <description>I would be very appreciative if someone could help me with what I think is&lt;BR /&gt;
a simple problem. I want to use the SSGET command to select all objects of&lt;BR /&gt;
a particular name that are inside a window that I select.  I know how to&lt;BR /&gt;
select all objects in the drawing of the correct name but I'm not sure how&lt;BR /&gt;
to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
they be obtained within the SSGET.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for any help!&lt;BR /&gt;
&lt;BR /&gt;
Chris E</description>
      <pubDate>Wed, 02 Feb 2000 08:55:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830455#M160605</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T08:55:51Z</dc:date>
    </item>
    <item>
      <title>Re: SSGET PROBLEM</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830456#M160606</link>
      <description>You can do this by just eliminating the "x" paramter&lt;BR /&gt;
from (ssget):&lt;BR /&gt;
&lt;BR /&gt;
Instead of (ssget "x" '((..filter..)))&lt;BR /&gt;
&lt;BR /&gt;
Just use (ssget '((.... filter ....)))&lt;BR /&gt;
&lt;BR /&gt;
chris emmerick wrote:&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; I would be very appreciative if someone could help me with what I think is&lt;BR /&gt;
&amp;gt; a simple problem. I want to use the SSGET command to select all objects of&lt;BR /&gt;
&amp;gt; a particular name that are inside a window that I select.  I know how to&lt;BR /&gt;
&amp;gt; select all objects in the drawing of the correct name but I'm not sure how&lt;BR /&gt;
&amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
&amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Chris E&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
/*********************************************************/&lt;BR /&gt;
/*    Tony Tanzillo     Design Automation Consulting     */&lt;BR /&gt;
/* Programming &amp;amp; Customization for AutoCAD &amp;amp; Compatibles */&lt;BR /&gt;
/* ----------------------------------------------------- */&lt;BR /&gt;
/*            tony.tanzillo@worldnet.att.net             */&lt;BR /&gt;
/*    http://ourworld.compuserve.com/homepages/tonyt     */&lt;BR /&gt;
/*********************************************************/</description>
      <pubDate>Wed, 02 Feb 2000 12:37:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830456#M160606</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T12:37:35Z</dc:date>
    </item>
    <item>
      <title>Re: SSGET PROBLEM</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830457#M160607</link>
      <description>Chris,&lt;BR /&gt;
&lt;BR /&gt;
To obtain the objects using the normal windowing method (along with any&lt;BR /&gt;
other method) you might use something like:&lt;BR /&gt;
&lt;BR /&gt;
(defun c:ssgetw ()&lt;BR /&gt;
  (setq ss (ssget '((0 . "LINE"))))&lt;BR /&gt;
  (command "erase" ss "")&lt;BR /&gt;
  (princ)&lt;BR /&gt;
)&lt;BR /&gt;
&lt;BR /&gt;
To obtain the objects using a specified window only, you might use&lt;BR /&gt;
something like:&lt;BR /&gt;
&lt;BR /&gt;
(defun c:ssgetwa ()&lt;BR /&gt;
  (setq p1 (getpoint "\nFirst corner of window: "))&lt;BR /&gt;
  (setq p2 (getcorner p1 "\nOther corner of window: "))&lt;BR /&gt;
  (setq ss (ssget "W" p1 p2 '((0 . "LINE"))))&lt;BR /&gt;
  (command "erase" ss "")&lt;BR /&gt;
  (princ)&lt;BR /&gt;
)&lt;BR /&gt;
&lt;BR /&gt;
Hope this gives you some ideas.&lt;BR /&gt;
&lt;BR /&gt;
FD&lt;BR /&gt;
&lt;BR /&gt;
chris emmerick &lt;CHRISEMM&gt; wrote in article&lt;BR /&gt;
&amp;lt;01bf6d52$f4301180$9dd66ccb@chris&amp;gt;...&lt;BR /&gt;
&amp;gt; I would be very appreciative if someone could help me with what I think&lt;BR /&gt;
is&lt;BR /&gt;
&amp;gt; a simple problem. I want to use the SSGET command to select all objects&lt;BR /&gt;
of&lt;BR /&gt;
&amp;gt; a particular name that are inside a window that I select.  I know how to&lt;BR /&gt;
&amp;gt; select all objects in the drawing of the correct name but I'm not sure&lt;BR /&gt;
how&lt;BR /&gt;
&amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
&amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt;&lt;/CHRISEMM&gt;</description>
      <pubDate>Wed, 02 Feb 2000 13:03:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830457#M160607</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T13:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: SSGET PROBLEM</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830458#M160608</link>
      <description>I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
objects from it.&lt;BR /&gt;
This way you are free to select anything or way you want.&lt;BR /&gt;
&lt;BR /&gt;
Good luck&lt;BR /&gt;
&lt;BR /&gt;
Marcel Janmaat&lt;BR /&gt;
&lt;BR /&gt;
-----Oorspronkelijk bericht-----&lt;BR /&gt;
Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
Gepost naar: customization&lt;BR /&gt;
Discussie: SSGET PROBLEM&lt;BR /&gt;
Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&lt;BR /&gt;
I would be very appreciative if someone could help me with what I think&lt;BR /&gt;
is&lt;BR /&gt;
a simple problem. I want to use the SSGET command to select all objects&lt;BR /&gt;
of&lt;BR /&gt;
a particular name that are inside a window that I select.  I know how to&lt;BR /&gt;
select all objects in the drawing of the correct name but I'm not sure&lt;BR /&gt;
how&lt;BR /&gt;
to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
they be obtained within the SSGET.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for any help!&lt;BR /&gt;
&lt;BR /&gt;
Chris E</description>
      <pubDate>Wed, 02 Feb 2000 16:04:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830458#M160608</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T16:04:03Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830459#M160609</link>
      <description>And how would you recommend doing that? Filters are applied to selections&lt;BR /&gt;
not selection sets. The suggestions offered by Tony and Flitter are correct.&lt;BR /&gt;
&lt;BR /&gt;
"Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Good luck&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; I would be very appreciative if someone could help me with what I think&lt;BR /&gt;
&amp;gt; is&lt;BR /&gt;
&amp;gt; a simple problem. I want to use the SSGET command to select all objects&lt;BR /&gt;
&amp;gt; of&lt;BR /&gt;
&amp;gt; a particular name that are inside a window that I select.  I know how to&lt;BR /&gt;
&amp;gt; select all objects in the drawing of the correct name but I'm not sure&lt;BR /&gt;
&amp;gt; how&lt;BR /&gt;
&amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
&amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Chris E&lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;</description>
      <pubDate>Wed, 02 Feb 2000 18:44:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830459#M160609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T18:44:11Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830460#M160610</link>
      <description>Frank,&lt;BR /&gt;
&lt;BR /&gt;
Some programmers do select all objects, filter each object in the selection&lt;BR /&gt;
set, and then remove any that do not match the criteria from the selection&lt;BR /&gt;
set with ssdel.&lt;BR /&gt;
&lt;BR /&gt;
Reminds me of putting all of the chickens in the pen, then killing the hens&lt;BR /&gt;
just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
--&lt;BR /&gt;
Dave D&lt;BR /&gt;
&lt;BR /&gt;
Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; And how would you recommend doing that? Filters are applied to selections&lt;BR /&gt;
&amp;gt; not selection sets. The suggestions offered by Tony and Flitter are&lt;BR /&gt;
correct.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; I would be very appreciative if someone could help me with what I think&lt;BR /&gt;
&amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all objects&lt;BR /&gt;
&amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; a particular name that are inside a window that I select.  I know how&lt;BR /&gt;
to&lt;BR /&gt;
&amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm not sure&lt;BR /&gt;
&amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command or can&lt;BR /&gt;
&amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Wed, 02 Feb 2000 19:12:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830460#M160610</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T19:12:03Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830461#M160611</link>
      <description>I can't imagine why anyone would want to do an entget and check the 0 fields&lt;BR /&gt;
of every entity when they could just use a selection set filter. Guess I'm a&lt;BR /&gt;
little myopic.&lt;BR /&gt;
&lt;BR /&gt;
"David Doane" &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
news:01bf6db1$51518840$8355d2d0@lms-1...&lt;BR /&gt;
&amp;gt; Frank,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Some programmers do select all objects, filter each object in the&lt;BR /&gt;
selection&lt;BR /&gt;
&amp;gt; set, and then remove any that do not match the criteria from the selection&lt;BR /&gt;
&amp;gt; set with ssdel.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Reminds me of putting all of the chickens in the pen, then killing the&lt;BR /&gt;
hens&lt;BR /&gt;
&amp;gt; just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Dave D&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
selections&lt;BR /&gt;
&amp;gt; &amp;gt; not selection sets. The suggestions offered by Tony and Flitter are&lt;BR /&gt;
&amp;gt; correct.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; I would be very appreciative if someone could help me with what I&lt;BR /&gt;
think&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
objects&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; a particular name that are inside a window that I select.  I know how&lt;BR /&gt;
&amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm not sure&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command or&lt;BR /&gt;
can&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;&lt;/LECTRO-MECH&gt;</description>
      <pubDate>Wed, 02 Feb 2000 19:22:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830461#M160611</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T19:22:33Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830462#M160612</link>
      <description>Could you please then tell me how would you do this if you want to&lt;BR /&gt;
filter all blocks with a string "E_" in the blockname. Is'nt it like&lt;BR /&gt;
this the only way then?&lt;BR /&gt;
&lt;BR /&gt;
-----Oorspronkelijk bericht-----&lt;BR /&gt;
Van: David Doane [mailto:lectro-mech@cyberportal.com]&lt;BR /&gt;
Gepost op: woensdag 2 februari 2000 20:12&lt;BR /&gt;
Gepost naar: customization&lt;BR /&gt;
Discussie: SSGET PROBLEM&lt;BR /&gt;
Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&lt;BR /&gt;
Frank,&lt;BR /&gt;
&lt;BR /&gt;
Some programmers do select all objects, filter each object in the&lt;BR /&gt;
selection&lt;BR /&gt;
set, and then remove any that do not match the criteria from the&lt;BR /&gt;
selection&lt;BR /&gt;
set with ssdel.&lt;BR /&gt;
&lt;BR /&gt;
Reminds me of putting all of the chickens in the pen, then killing the&lt;BR /&gt;
hens&lt;BR /&gt;
just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
--&lt;BR /&gt;
Dave D&lt;BR /&gt;
&lt;BR /&gt;
Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
selections&lt;BR /&gt;
&amp;gt; not selection sets. The suggestions offered by Tony and Flitter are&lt;BR /&gt;
correct.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; I would be very appreciative if someone could help me with what I&lt;BR /&gt;
think&lt;BR /&gt;
&amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
objects&lt;BR /&gt;
&amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; a particular name that are inside a window that I select.  I know&lt;BR /&gt;
how&lt;BR /&gt;
to&lt;BR /&gt;
&amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm not&lt;BR /&gt;
sure&lt;BR /&gt;
&amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command or&lt;BR /&gt;
can&lt;BR /&gt;
&amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Wed, 02 Feb 2000 19:38:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830462#M160612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T19:38:24Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830463#M160613</link>
      <description>Or is the other guy?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Network Administrator (or, Modern-day Wizard)&lt;BR /&gt;
(remove the "not." in my address for direct e-mail)&lt;BR /&gt;
&lt;BR /&gt;
Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:87a05h$2qe14@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; I can't imagine why anyone would want to do an entget and check the 0&lt;BR /&gt;
fields&lt;BR /&gt;
&amp;gt; of every entity when they could just use a selection set filter. Guess I'm&lt;BR /&gt;
a&lt;BR /&gt;
&amp;gt; little myopic.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; "David Doane" &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:01bf6db1$51518840$8355d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; Frank,&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Some programmers do select all objects, filter each object in the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; &amp;gt; set, and then remove any that do not match the criteria from the&lt;BR /&gt;
selection&lt;BR /&gt;
&amp;gt; &amp;gt; set with ssdel.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Reminds me of putting all of the chickens in the pen, then killing the&lt;BR /&gt;
&amp;gt; hens&lt;BR /&gt;
&amp;gt; &amp;gt; just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Dave D&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
&amp;gt; selections&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; not selection sets. The suggestions offered by Tony and Flitter are&lt;BR /&gt;
&amp;gt; &amp;gt; correct.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; I would be very appreciative if someone could help me with what I&lt;BR /&gt;
&amp;gt; think&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
&amp;gt; objects&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; a particular name that are inside a window that I select.  I know&lt;BR /&gt;
how&lt;BR /&gt;
&amp;gt; &amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm not&lt;BR /&gt;
sure&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command or&lt;BR /&gt;
&amp;gt; can&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;&lt;/LECTRO-MECH&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Wed, 02 Feb 2000 19:46:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830463#M160613</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T19:46:33Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830464#M160614</link>
      <description>Selection set filters allow for the use of wildcards: (ssget "X" '((0 .&lt;BR /&gt;
"INSERT")(2 . "E_*")))&lt;BR /&gt;
&lt;BR /&gt;
"Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
news:048CF107BE98D211A6440008C7456EA30F2DBC@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; Could you please then tell me how would you do this if you want to&lt;BR /&gt;
&amp;gt; filter all blocks with a string "E_" in the blockname. Is'nt it like&lt;BR /&gt;
&amp;gt; this the only way then?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; Van: David Doane [mailto:lectro-mech@cyberportal.com]&lt;BR /&gt;
&amp;gt; Gepost op: woensdag 2 februari 2000 20:12&lt;BR /&gt;
&amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Frank,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Some programmers do select all objects, filter each object in the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; set, and then remove any that do not match the criteria from the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; set with ssdel.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Reminds me of putting all of the chickens in the pen, then killing the&lt;BR /&gt;
&amp;gt; hens&lt;BR /&gt;
&amp;gt; just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Dave D&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
&amp;gt; selections&lt;BR /&gt;
&amp;gt; &amp;gt; not selection sets. The suggestions offered by Tony and Flitter are&lt;BR /&gt;
&amp;gt; correct.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; I would be very appreciative if someone could help me with what I&lt;BR /&gt;
&amp;gt; think&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
&amp;gt; objects&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; a particular name that are inside a window that I select.  I know&lt;BR /&gt;
&amp;gt; how&lt;BR /&gt;
&amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm not&lt;BR /&gt;
&amp;gt; sure&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need to be&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command or&lt;BR /&gt;
&amp;gt; can&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;&lt;/M.JANMAAT&gt;</description>
      <pubDate>Wed, 02 Feb 2000 19:52:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830464#M160614</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T19:52:24Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830465#M160615</link>
      <description>Well then,&lt;BR /&gt;
&lt;BR /&gt;
Since you guys appear to be the experts on this, could you please tell&lt;BR /&gt;
me then how i can filter all blocknames wich contain the string "E_" in&lt;BR /&gt;
the filename. How can i put this in the ssget command.&lt;BR /&gt;
&lt;BR /&gt;
-----Oorspronkelijk bericht-----&lt;BR /&gt;
Van: R. Robert Bell [mailto:not.robertb@mwengineers.com]&lt;BR /&gt;
Gepost op: woensdag 2 februari 2000 20:47&lt;BR /&gt;
Gepost naar: customization&lt;BR /&gt;
Discussie: SSGET PROBLEM&lt;BR /&gt;
Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&lt;BR /&gt;
Or is the other guy?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Network Administrator (or, Modern-day Wizard)&lt;BR /&gt;
(remove the "not." in my address for direct e-mail)&lt;BR /&gt;
&lt;BR /&gt;
Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:87a05h$2qe14@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; I can't imagine why anyone would want to do an entget and check the 0&lt;BR /&gt;
fields&lt;BR /&gt;
&amp;gt; of every entity when they could just use a selection set filter. Guess&lt;BR /&gt;
I'm&lt;BR /&gt;
a&lt;BR /&gt;
&amp;gt; little myopic.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; "David Doane" &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:01bf6db1$51518840$8355d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; Frank,&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Some programmers do select all objects, filter each object in the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; &amp;gt; set, and then remove any that do not match the criteria from the&lt;BR /&gt;
selection&lt;BR /&gt;
&amp;gt; &amp;gt; set with ssdel.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Reminds me of putting all of the chickens in the pen, then killing&lt;BR /&gt;
the&lt;BR /&gt;
&amp;gt; hens&lt;BR /&gt;
&amp;gt; &amp;gt; just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; Dave D&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
&amp;gt; selections&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; not selection sets. The suggestions offered by Tony and Flitter&lt;BR /&gt;
are&lt;BR /&gt;
&amp;gt; &amp;gt; correct.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the&lt;BR /&gt;
reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; I would be very appreciative if someone could help me with what&lt;BR /&gt;
I&lt;BR /&gt;
&amp;gt; think&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
&amp;gt; objects&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; a particular name that are inside a window that I select.  I&lt;BR /&gt;
know&lt;BR /&gt;
how&lt;BR /&gt;
&amp;gt; &amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm&lt;BR /&gt;
not&lt;BR /&gt;
sure&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need&lt;BR /&gt;
to be&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command&lt;BR /&gt;
or&lt;BR /&gt;
&amp;gt; can&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;&lt;/LECTRO-MECH&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Wed, 02 Feb 2000 20:01:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830465#M160615</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T20:01:53Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830466#M160616</link>
      <description>Thanks!&lt;BR /&gt;
I did 'nt know wildcards were alowed.&lt;BR /&gt;
&lt;BR /&gt;
-----Oorspronkelijk bericht-----&lt;BR /&gt;
Van: Frank Oquendo [mailto:franko@nospam.stonemedia.com]&lt;BR /&gt;
Gepost op: woensdag 2 februari 2000 20:52&lt;BR /&gt;
Gepost naar: customization&lt;BR /&gt;
Discussie: SSGET PROBLEM&lt;BR /&gt;
Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&lt;BR /&gt;
Selection set filters allow for the use of wildcards: (ssget "X" '((0 .&lt;BR /&gt;
"INSERT")(2 . "E_*")))&lt;BR /&gt;
&lt;BR /&gt;
"Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
news:048CF107BE98D211A6440008C7456EA30F2DBC@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; Could you please then tell me how would you do this if you want to&lt;BR /&gt;
&amp;gt; filter all blocks with a string "E_" in the blockname. Is'nt it like&lt;BR /&gt;
&amp;gt; this the only way then?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; Van: David Doane [mailto:lectro-mech@cyberportal.com]&lt;BR /&gt;
&amp;gt; Gepost op: woensdag 2 februari 2000 20:12&lt;BR /&gt;
&amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Frank,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Some programmers do select all objects, filter each object in the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; set, and then remove any that do not match the criteria from the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; set with ssdel.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Reminds me of putting all of the chickens in the pen, then killing the&lt;BR /&gt;
&amp;gt; hens&lt;BR /&gt;
&amp;gt; just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; Dave D&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
&amp;gt; selections&lt;BR /&gt;
&amp;gt; &amp;gt; not selection sets. The suggestions offered by Tony and Flitter are&lt;BR /&gt;
&amp;gt; correct.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; I would be very appreciative if someone could help me with what I&lt;BR /&gt;
&amp;gt; think&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
&amp;gt; objects&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; a particular name that are inside a window that I select.  I know&lt;BR /&gt;
&amp;gt; how&lt;BR /&gt;
&amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm not&lt;BR /&gt;
&amp;gt; sure&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need to&lt;BR /&gt;
be&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command&lt;BR /&gt;
or&lt;BR /&gt;
&amp;gt; can&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;&lt;/M.JANMAAT&gt;</description>
      <pubDate>Wed, 02 Feb 2000 20:28:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830466#M160616</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T20:28:29Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830467#M160617</link>
      <description>No problem.</description>
      <pubDate>Wed, 02 Feb 2000 21:14:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830467#M160617</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-02T21:14:24Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830468#M160618</link>
      <description>Hey! Notice how he said "appear" to be experts! &lt;GRIN&gt;&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
R. Robert Bell, MCSE&lt;BR /&gt;
Network Administrator (or, Modern-day Wizard)&lt;BR /&gt;
(remove the "not." in my address for direct e-mail)&lt;BR /&gt;
&lt;BR /&gt;
Marcel Janmaat &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
news:048CF107BE98D211A6440008C7456EA30F2DFB@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; Well then,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Since you guys appear to be the experts on this, could you please tell&lt;BR /&gt;
&amp;gt; me then how i can filter all blocknames wich contain the string "E_" in&lt;BR /&gt;
&amp;gt; the filename. How can i put this in the ssget command.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; Van: R. Robert Bell [mailto:not.robertb@mwengineers.com]&lt;BR /&gt;
&amp;gt; Gepost op: woensdag 2 februari 2000 20:47&lt;BR /&gt;
&amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Or is the other guy?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; --&lt;BR /&gt;
&amp;gt; R. Robert Bell, MCSE&lt;BR /&gt;
&amp;gt; Network Administrator (or, Modern-day Wizard)&lt;BR /&gt;
&amp;gt; (remove the "not." in my address for direct e-mail)&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:87a05h$2qe14@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; &amp;gt; I can't imagine why anyone would want to do an entget and check the 0&lt;BR /&gt;
&amp;gt; fields&lt;BR /&gt;
&amp;gt; &amp;gt; of every entity when they could just use a selection set filter. Guess&lt;BR /&gt;
&amp;gt; I'm&lt;BR /&gt;
&amp;gt; a&lt;BR /&gt;
&amp;gt; &amp;gt; little myopic.&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; "David Doane" &lt;LECTRO-MECH&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; news:01bf6db1$51518840$8355d2d0@lms-1...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Frank,&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Some programmers do select all objects, filter each object in the&lt;BR /&gt;
&amp;gt; &amp;gt; selection&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; set, and then remove any that do not match the criteria from the&lt;BR /&gt;
&amp;gt; selection&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; set with ssdel.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Reminds me of putting all of the chickens in the pen, then killing&lt;BR /&gt;
&amp;gt; the&lt;BR /&gt;
&amp;gt; &amp;gt; hens&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; just to get the roosters. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; --&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Dave D&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; Frank Oquendo &lt;FRANKO&gt; wrote in article&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;lt;879tpf$2qb16@adesknews2.autodesk.com&amp;gt;...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; And how would you recommend doing that? Filters are applied to&lt;BR /&gt;
&amp;gt; &amp;gt; selections&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; not selection sets. The suggestions offered by Tony and Flitter&lt;BR /&gt;
&amp;gt; are&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; correct.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; "Marcel Janmaat" &lt;M.JANMAAT&gt; wrote in message&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; news:048CF107BE98D211A6440008C7456EA30F2ACE@HE-MAILSRV...&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; I suggest you use just plain (ssget) and then filter the&lt;BR /&gt;
&amp;gt; reguiered&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; objects from it.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; This way you are free to select anything or way you want.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Good luck&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Marcel Janmaat&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; -----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Van: chris emmerick [mailto:chrisemm@ozemail.com.au]&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Gepost op: woensdag 2 februari 2000 9:56&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Gepost naar: customization&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Onderwerp: SSGET PROBLEM&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; I would be very appreciative if someone could help me with what&lt;BR /&gt;
&amp;gt; I&lt;BR /&gt;
&amp;gt; &amp;gt; think&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; is&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; a simple problem. I want to use the SSGET command to select all&lt;BR /&gt;
&amp;gt; &amp;gt; objects&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; of&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; a particular name that are inside a window that I select.  I&lt;BR /&gt;
&amp;gt; know&lt;BR /&gt;
&amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; to&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; select all objects in the drawing of the correct name but I'm&lt;BR /&gt;
&amp;gt; not&lt;BR /&gt;
&amp;gt; sure&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; how&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; to make it work with a window.  Do the window coordinates need&lt;BR /&gt;
&amp;gt; to be&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; obtained before the SSGET and then included in the SSGET command&lt;BR /&gt;
&amp;gt; or&lt;BR /&gt;
&amp;gt; &amp;gt; can&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; they be obtained within the SSGET.&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Thanks for any help!&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Chris E&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; &amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/M.JANMAAT&gt;&lt;/FRANKO&gt;&lt;/LECTRO-MECH&gt;&lt;/FRANKO&gt;&lt;/M.JANMAAT&gt;&lt;/GRIN&gt;</description>
      <pubDate>Thu, 03 Feb 2000 00:41:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830468#M160618</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-03T00:41:22Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830469#M160619</link>
      <description>Marcel,&lt;BR /&gt;
&lt;BR /&gt;
(ssget '((0 . "INSERT")(2 . "E_*")))&lt;BR /&gt;
&lt;BR /&gt;
Or, to select all block inserts in the drawing that do NOT start with "E_":&lt;BR /&gt;
&lt;BR /&gt;
(ssget "X" '((0 . "INSERT")(2 . "~E_*")))&lt;BR /&gt;
&lt;BR /&gt;
Matt&lt;BR /&gt;
stachoni@bellatlantic.net&lt;BR /&gt;
&lt;BR /&gt;
On Wed, 2 Feb 2000 21:01:53 +0100, Marcel Janmaat &lt;M.JANMAAT&gt;&lt;BR /&gt;
wrote:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;Well then,&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;Since you guys appear to be the experts on this, could you please tell&lt;BR /&gt;
&amp;gt;me then how i can filter all blocknames wich contain the string "E_" in&lt;BR /&gt;
&amp;gt;the filename. How can i put this in the ssget command.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;-----Oorspronkelijk bericht-----&lt;BR /&gt;
&amp;gt;Van: R. Robert Bell [mailto:not.robertb@mwengineers.com]&lt;BR /&gt;
&amp;gt;Gepost op: woensdag 2 februari 2000 20:47&lt;BR /&gt;
&amp;gt;Gepost naar: customization&lt;BR /&gt;
&amp;gt;Discussie: SSGET PROBLEM&lt;BR /&gt;
&amp;gt;Onderwerp: Re: SSGET PROBLEM&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;Or is the other guy?&lt;/M.JANMAAT&gt;</description>
      <pubDate>Thu, 03 Feb 2000 17:33:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-problem/m-p/830469#M160619</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-03T17:33:08Z</dc:date>
    </item>
  </channel>
</rss>

