<?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 Moving using Sendcommand in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333886#M88452</link>
    <description>I can't get the move command to work with send command. It gets to the point&lt;BR /&gt;
where you select the object then keeps on going though the program.&lt;BR /&gt;
&lt;BR /&gt;
any idea?&lt;BR /&gt;
&lt;BR /&gt;
Heath</description>
    <pubDate>Thu, 28 Dec 2000 22:48:44 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2000-12-28T22:48:44Z</dc:date>
    <item>
      <title>Moving using Sendcommand</title>
      <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333886#M88452</link>
      <description>I can't get the move command to work with send command. It gets to the point&lt;BR /&gt;
where you select the object then keeps on going though the program.&lt;BR /&gt;
&lt;BR /&gt;
any idea?&lt;BR /&gt;
&lt;BR /&gt;
Heath</description>
      <pubDate>Thu, 28 Dec 2000 22:48:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333886#M88452</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-28T22:48:44Z</dc:date>
    </item>
    <item>
      <title>Re: Moving using Sendcommand</title>
      <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333887#M88453</link>
      <description>It would be easier to help you if you post a little bit of your code. But &lt;BR /&gt;
why should you use move in the send command instead of using the Move &lt;BR /&gt;
method?&lt;BR /&gt;
&lt;BR /&gt;
wkr, jwk&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
You ask a silly question, you get a technical answer...&lt;BR /&gt;
&lt;BR /&gt;
Heath had the next bright idea:&lt;BR /&gt;
&lt;BR /&gt;
&amp;gt;I can't get the move command to work with send command. It gets to the&lt;BR /&gt;
&amp;gt;point where you select the object then keeps on going though the&lt;BR /&gt;
&amp;gt;program. &lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;any idea?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;Heath&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;</description>
      <pubDate>Fri, 29 Dec 2000 02:41:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333887#M88453</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-29T02:41:30Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333888#M88454</link>
      <description>&amp;gt; But why should you use move in the send command instead of using the &lt;BR /&gt;
&amp;gt; Move method?&lt;BR /&gt;
&lt;BR /&gt;
If I'm not mistaken (having done exactly this) Heath wants to see the &lt;BR /&gt;
ghost of the block as he inserts it (from the earlier post request) and &lt;BR /&gt;
then moves it (this post).&lt;BR /&gt;
&lt;BR /&gt;
You simply don't get this with the VB/VBA commands.&lt;BR /&gt;
&lt;BR /&gt;
Unfortunately I can't get to our server/run Autocad at the moment (to &lt;BR /&gt;
prove this is ok) as we are using the christmas downtime for IT &lt;BR /&gt;
maintenance.  &lt;BR /&gt;
However from an old bit of scrap paper (!) you will need to adapt the &lt;BR /&gt;
following (which is for rotation);&lt;BR /&gt;
&lt;BR /&gt;
ThisDrawing.SendCommand "_rotate" &amp;amp; blkref &amp;amp; "" &amp;amp; blkhandle &amp;amp; pause&lt;BR /&gt;
&lt;BR /&gt;
Hope this helps.&lt;BR /&gt;
&lt;BR /&gt;
John</description>
      <pubDate>Fri, 29 Dec 2000 11:39:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333888#M88454</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-29T11:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Moving using Sendcommand</title>
      <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333889#M88455</link>
      <description>Heath, &lt;BR /&gt;
If SendCommand has to wait for user input, your VBA code goes on without it.  If you use SendCommand and supply all of the answers, so that you do not have to wait for user input, your VBA program will wait for it to finish before going on to the next line of code.  The only practical way of using SendCommand and waiting for user input is to make it the last line of your module.  I know, it STINKS.</description>
      <pubDate>Fri, 29 Dec 2000 14:05:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333889#M88455</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-29T14:05:43Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333890#M88456</link>
      <description>Or, I think you can do a SendCommand for your move, and then do a SendCommand to run the next part of your code.&lt;BR /&gt;
public sub MoveBlock()&lt;BR /&gt;
  'whatever you need to do before moving    &lt;BR /&gt;
  SendCommand "Move" 'etc                &lt;BR /&gt;
  SendCommand "-vbarun MoveBlockPart2"            &lt;BR /&gt;
end sub        &lt;BR /&gt;
public sub MoveBlockPart2()           &lt;BR /&gt;
 'continue with whatever you need to do           &lt;BR /&gt;
end sub           &lt;BR /&gt;
Good luck!</description>
      <pubDate>Fri, 29 Dec 2000 14:13:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333890#M88456</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-29T14:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Moving using Sendcommand</title>
      <link>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333891#M88457</link>
      <description>You can use AcadX (www.caddzone.com) to drag objects&lt;BR /&gt;
on the screen while the user moves the cursor.  I have a&lt;BR /&gt;
sample, but don't have it here at home. When I get into&lt;BR /&gt;
work next week I'll be happy to post it.&lt;BR /&gt;
&lt;BR /&gt;
"Heath" &lt;HEATHRHODES&gt; wrote in message&lt;BR /&gt;
news:5DBC09403BF564D183308747CEE1081C@in.WebX.SaUCah8kaAW...&lt;BR /&gt;
&amp;gt; I can't get the move command to work with send command. It gets to the&lt;BR /&gt;
point&lt;BR /&gt;
&amp;gt; where you select the object then keeps on going though the program.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; any idea?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Heath&lt;BR /&gt;
&amp;gt;&lt;/HEATHRHODES&gt;</description>
      <pubDate>Sat, 30 Dec 2000 01:23:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/moving-using-sendcommand/m-p/333891#M88457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-12-30T01:23:48Z</dc:date>
    </item>
  </channel>
</rss>

