<?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: in VBA Forum</title>
    <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315415#M95470</link>
    <description>Frank, just so you know, MDT4 does not fully honor NoMutt...&lt;BR /&gt;
&lt;MUTTER&gt;&lt;MUTTER&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;
Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:88s223$pko26@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Where did you ever come across that one???&lt;/FRANKO&gt;&lt;/MUTTER&gt;&lt;/MUTTER&gt;</description>
    <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2001-12-06T15:25:59Z</dc:date>
    <item>
      <title>Pause Symbol</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315401#M95456</link>
      <description>From the Visual Basic help files of VB Design&lt;BR /&gt;
http://vbdesign.hypermart.net/cadpages/&lt;BR /&gt;
&lt;BR /&gt;
Hi Tom,&lt;BR /&gt;
Without seeing the code you have so far, I offer you this:&lt;BR /&gt;
&lt;BR /&gt;
ThisDrawing.Utility.GetAngle&lt;BR /&gt;
&lt;BR /&gt;
This will allow the user to enter a number at the command line or pick on&lt;BR /&gt;
the screen (and it will "pause" code execution until it gets the value)&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath&lt;BR /&gt;
VB Design</description>
      <pubDate>Mon, 21 Feb 2000 16:30:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315401#M95456</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-21T16:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Pause Symbol</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315402#M95457</link>
      <description>Someone here wrote a Lisp routine that looks something like this:&lt;BR /&gt;
&lt;BR /&gt;
(defun C:Curbs ()&lt;BR /&gt;
    (defun CURBR ()&lt;BR /&gt;
        (command "insert" "TCBCR" insp (getvar "ltscale") "" pause (rtos&lt;BR /&gt;
TC)&lt;BR /&gt;
             (rtos BC) (princ)&lt;BR /&gt;
)&lt;BR /&gt;
        ;; Begin Main Program&lt;BR /&gt;
        ;;Stuff here to get ins pt , desc info, elev etc &amp;amp; calc TC &amp;amp; BC&lt;BR /&gt;
values&lt;BR /&gt;
&lt;BR /&gt;
    call CURBR&lt;BR /&gt;
    (princ)&lt;BR /&gt;
)&lt;BR /&gt;
&lt;BR /&gt;
I can do everything in VBA except the pause to allow the user to specify&lt;BR /&gt;
an arbitrary rotation. Is there a way to do this in VBA (A2k - LDD2)?&lt;BR /&gt;
&lt;BR /&gt;
Thanks  -  Tom</description>
      <pubDate>Mon, 21 Feb 2000 16:38:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315402#M95457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-21T16:38:48Z</dc:date>
    </item>
    <item>
      <title>Re: Pause Symbol</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315403#M95458</link>
      <description>Randall,&lt;BR /&gt;
Here's the code.&lt;BR /&gt;
&lt;BR /&gt;
Private Sub insertBlock(blkName As String)&lt;BR /&gt;
  Dim oInsPt As Variant         'User selected insertion point&lt;BR /&gt;
  Dim vAttributes As Variant    'Insertion Block Attributes&lt;BR /&gt;
  Dim vScale As Variant&lt;BR /&gt;
  Dim oBlock As AcadBlockReference&lt;BR /&gt;
  Dim oLine As AcadLine&lt;BR /&gt;
&lt;BR /&gt;
  On Error Resume Next&lt;BR /&gt;
&lt;BR /&gt;
  vScale = ThisDrawing.GetVariable("ltscale")&lt;BR /&gt;
  Me.Hide&lt;BR /&gt;
  oInsPt = ThisDrawing.Utility.GetPoint(, vbCr &amp;amp; "Select Insertion&lt;BR /&gt;
Point: ")&lt;BR /&gt;
  If Err.Number = 0 Then&lt;BR /&gt;
    Set oBlock = ThisDrawing.ModelSpace.insertBlock(oInsPt, blkName,&lt;BR /&gt;
vScale, vScale, 1, 0)&lt;BR /&gt;
    vAttributes = oBlock.GetAttributes&lt;BR /&gt;
    vAttributes(0).TextString = txtTop.Text&lt;BR /&gt;
    vAttributes(1).TextString = TxtBottom.Text&lt;BR /&gt;
    Set oLine = ThisDrawing.ModelSpace.AddLine(TB_Curbs.oPt, oInsPt)&lt;BR /&gt;
  End If&lt;BR /&gt;
&lt;BR /&gt;
  Set oInsPt = Nothing&lt;BR /&gt;
  Set vAttributes = Nothing&lt;BR /&gt;
  Set vScale = Nothing&lt;BR /&gt;
  Set oBlock = Nothing&lt;BR /&gt;
  Set oLine = Nothing&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
I can't see a way of interrupting Set oBlock in order  to get user&lt;BR /&gt;
input. There is some mention in the Help about using the   \&lt;BR /&gt;
character with macros but I couldn't make that work either.&lt;BR /&gt;
&lt;BR /&gt;
  - Tom&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
news:88rq2d$pko9@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; From the Visual Basic help files of VB Design&lt;BR /&gt;
&amp;gt; http://vbdesign.hypermart.net/cadpages/&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Hi Tom,&lt;BR /&gt;
&amp;gt; Without seeing the code you have so far, I offer you this:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; ThisDrawing.Utility.GetAngle&lt;/RWRATH73&gt;</description>
      <pubDate>Mon, 21 Feb 2000 17:01:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315403#M95458</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-21T17:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Pause Symbol</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315404#M95459</link>
      <description>Hi Frank,&lt;BR /&gt;
I covered all of the system variables for R15 sometime ago..I think it was&lt;BR /&gt;
last October.  If you look in the A.C.A.D. Archives you can find a complete&lt;BR /&gt;
documentation with sample code for each.&lt;BR /&gt;
I love the name on that one &lt;MUTTER&gt;&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath&lt;/MUTTER&gt;</description>
      <pubDate>Mon, 21 Feb 2000 18:54:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315404#M95459</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-21T18:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: Pause Symbol</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315405#M95460</link>
      <description>Hi Frank,&lt;BR /&gt;
Marie handles all of that stuff now, she must not have read my sticky note!&lt;BR /&gt;
If you are still not getting the letter I suggest you re-subscribe,&lt;BR /&gt;
&lt;BR /&gt;
http://vbdesign.hypermart.net/cadpages/a_code_a_day_acad.htm&lt;BR /&gt;
&lt;BR /&gt;
that way it will go directly to the boss.&lt;BR /&gt;
&lt;BR /&gt;
Randall</description>
      <pubDate>Mon, 21 Feb 2000 19:15:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315405#M95460</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-21T19:15:47Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315406#M95461</link>
      <description>Speaking of which, have you stopped cranking out A.C.A.D. or have you just&lt;BR /&gt;
lost my address due to my ISP Shuffle?&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Visit me at: http://www2.stonemedia.com/franko&lt;BR /&gt;
&lt;BR /&gt;
"Randall Rath" &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
news:88s2f4$pl233@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Hi Frank,&lt;BR /&gt;
&amp;gt; I covered all of the system variables for R15 sometime ago..I think it was&lt;BR /&gt;
&amp;gt; last October.  If you look in the A.C.A.D. Archives you can find a&lt;BR /&gt;
complete&lt;BR /&gt;
&amp;gt; documentation with sample code for each.&lt;BR /&gt;
&amp;gt; I love the name on that one &lt;MUTTER&gt;&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Randall Rath&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/MUTTER&gt;&lt;/RWRATH73&gt;</description>
      <pubDate>Mon, 21 Feb 2000 19:21:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315406#M95461</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2000-02-21T19:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Pause Symbol</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315407#M95462</link>
      <description>Hi Tom,&lt;BR /&gt;
Is there any reason why you can't retrieve the value prior to that line?&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath&lt;BR /&gt;
VB Design</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315407#M95462</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315408#M95463</link>
      <description>Randall,&lt;BR /&gt;
Works like a champ. Of course, I'll get some blank stares from the users&lt;BR /&gt;
because the won't see the actual block being highlighted. They'll have&lt;BR /&gt;
to just get used to it.&lt;BR /&gt;
&lt;BR /&gt;
One more question if you don't mind. I see the following on the command&lt;BR /&gt;
history:&lt;BR /&gt;
&lt;BR /&gt;
Pick a Point:&lt;BR /&gt;
Command: Select Insertion Point:&lt;BR /&gt;
Command: Select Rotation:&lt;BR /&gt;
Command: Duplicate definition of block ADCADD_ZZ  ignored.&lt;BR /&gt;
Pick a Point: *Cancel*&lt;BR /&gt;
&lt;BR /&gt;
Is there a way to suppress the Duplicate Definition message? As you can&lt;BR /&gt;
tell, I'm still in AutoCad 101.&lt;BR /&gt;
&lt;BR /&gt;
Thanks  -  Tom&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
news:88rro0$pkp11@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Hi Tom,&lt;BR /&gt;
&amp;gt; Is there any reason why you can't retrieve the value prior to that&lt;BR /&gt;
line?&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Randall Rath&lt;BR /&gt;
&amp;gt; VB Design&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt;&lt;/RWRATH73&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315408#M95463</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315409#M95464</link>
      <description>Hi Tom,&lt;BR /&gt;
Change the value of the system variable NOMUTT (yes that is the real name)&lt;BR /&gt;
to 1&lt;BR /&gt;
&lt;BR /&gt;
This will supress messages to the command line, just be sure to return it to&lt;BR /&gt;
its normal state when you are done!&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath&lt;BR /&gt;
VB Design</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315409#M95464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315410#M95465</link>
      <description>You can also use the SendCommand with the insert.  You need to quote all&lt;BR /&gt;
commands.  This example inserts the block and you can see it while you&lt;BR /&gt;
rotate it.&lt;BR /&gt;
&lt;BR /&gt;
Sub vbinsert()&lt;BR /&gt;
    Dim strTest As String&lt;BR /&gt;
    Dim strIns As String&lt;BR /&gt;
&lt;BR /&gt;
    ' strTest id a block in the drawing to insert&lt;BR /&gt;
    strTest = "recp"&lt;BR /&gt;
&lt;BR /&gt;
    strIns = "(command " &amp;amp; """-insert"" " &amp;amp; """" &amp;amp; strTest &amp;amp; """" &amp;amp; " pause&lt;BR /&gt;
" _&lt;BR /&gt;
               &amp;amp; """1.0""" &amp;amp; " """") " &amp;amp; vbCr&lt;BR /&gt;
&lt;BR /&gt;
    ThisDrawing.SendCommand strIns&lt;BR /&gt;
&lt;BR /&gt;
End Sub&lt;BR /&gt;
&lt;BR /&gt;
Hope this works.&lt;BR /&gt;
&lt;BR /&gt;
Bill Brookman&lt;BR /&gt;
bb@brookmangroup.com&lt;BR /&gt;
&lt;BR /&gt;
Tom Gilmer &lt;TGILMER.REMOVETHIS&gt; wrote in message&lt;BR /&gt;
news:88rvag$plh17@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Randall,&lt;BR /&gt;
&amp;gt; Works like a champ. Of course, I'll get some blank stares from the users&lt;BR /&gt;
&amp;gt; because the won't see the actual block being highlighted. They'll have&lt;BR /&gt;
&amp;gt; to just get used to it.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; One more question if you don't mind. I see the following on the command&lt;BR /&gt;
&amp;gt; history:&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Pick a Point:&lt;BR /&gt;
&amp;gt; Command: Select Insertion Point:&lt;BR /&gt;
&amp;gt; Command: Select Rotation:&lt;BR /&gt;
&amp;gt; Command: Duplicate definition of block ADCADD_ZZ  ignored.&lt;BR /&gt;
&amp;gt; Pick a Point: *Cancel*&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Is there a way to suppress the Duplicate Definition message? As you can&lt;BR /&gt;
&amp;gt; tell, I'm still in AutoCad 101.&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Thanks  -  Tom&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; Randall Rath &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
&amp;gt; news:88rro0$pkp11@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; &amp;gt; Hi Tom,&lt;BR /&gt;
&amp;gt; &amp;gt; Is there any reason why you can't retrieve the value prior to that&lt;BR /&gt;
&amp;gt; line?&lt;BR /&gt;
&amp;gt; &amp;gt;&lt;BR /&gt;
&amp;gt; &amp;gt; Randall Rath&lt;BR /&gt;
&amp;gt; &amp;gt; VB Design&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;/RWRATH73&gt;&lt;/TGILMER.REMOVETHIS&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315410#M95465</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315411#M95466</link>
      <description>Where did you ever come across that one???&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Visit me at: http://www2.stonemedia.com/franko&lt;BR /&gt;
&lt;BR /&gt;
"Randall Rath" &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
news:88s1pt$pli41@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Hi Tom,&lt;BR /&gt;
&amp;gt; Change the value of the system variable NOMUTT (yes that is the real name)&lt;BR /&gt;
&amp;gt; to 1&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; This will supress messages to the command line, just be sure to return it&lt;BR /&gt;
to&lt;BR /&gt;
&amp;gt; its normal state when you are done!&lt;/RWRATH73&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315411#M95466</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315412#M95467</link>
      <description>Randall,&lt;BR /&gt;
Thanks for all your help. I've doing a lot of muttering these days.&lt;BR /&gt;
&lt;BR /&gt;
  - Tom&lt;BR /&gt;
&lt;BR /&gt;
Randall Rath &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
news:88s1pt$pli41@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Hi Tom,&lt;BR /&gt;
&amp;gt; Change the value of the system variable NOMUTT (yes that is the real&lt;BR /&gt;
name)&lt;BR /&gt;
&amp;gt; to 1&lt;/RWRATH73&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315412#M95467</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315413#M95468</link>
      <description>Bill,&lt;BR /&gt;
I'll try it as soon as I get a chance. I'll let you know how it went&lt;BR /&gt;
&lt;BR /&gt;
Thanks  -  Tom&lt;BR /&gt;
&lt;BR /&gt;
Bill Brookman &lt;BB&gt; wrote in message&lt;BR /&gt;
news:88s0ls$plg22@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; You can also use the SendCommand with the insert.  You need to quote&lt;BR /&gt;
all&lt;BR /&gt;
&amp;gt; commands.  This example inserts the block and you can see it while you&lt;BR /&gt;
&amp;gt; rotate it.&lt;/BB&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315413#M95468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315414#M95469</link>
      <description>Credit where credit due.&lt;BR /&gt;
&lt;BR /&gt;
I do believe this was first documented by Owen Wengerd.&lt;BR /&gt;
&lt;BR /&gt;
http://www.manusoft.com/acadexp.htm#SysVars&lt;BR /&gt;
&lt;BR /&gt;
__________________________________&lt;BR /&gt;
&lt;BR /&gt;
Michael Puckett&lt;BR /&gt;
programmer@cadvision.com&lt;BR /&gt;
&amp;gt; Not &amp;lt; an Autodesk hall monitor.&lt;BR /&gt;
Imagination makes all things possible.&lt;BR /&gt;
__________________________________&lt;BR /&gt;
&lt;BR /&gt;
"Frank Oquendo" &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:88s223$pko26@adesknews2.autodesk.com...&lt;BR /&gt;
Where did you ever come across that one???&lt;BR /&gt;
&lt;BR /&gt;
--&lt;BR /&gt;
Visit me at: http://www2.stonemedia.com/franko&lt;BR /&gt;
&lt;BR /&gt;
"Randall Rath" &lt;RWRATH73&gt; wrote in message&lt;BR /&gt;
news:88s1pt$pli41@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Hi Tom,&lt;BR /&gt;
&amp;gt; Change the value of the system variable NOMUTT (yes that is the real name)&lt;BR /&gt;
&amp;gt; to 1&lt;BR /&gt;
&amp;gt;&lt;BR /&gt;
&amp;gt; This will supress messages to the command line, just be sure to return it&lt;BR /&gt;
to&lt;BR /&gt;
&amp;gt; its normal state when you are done!&lt;/RWRATH73&gt;&lt;/FRANKO&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315414#M95469</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
    <item>
      <title>Re:</title>
      <link>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315415#M95470</link>
      <description>Frank, just so you know, MDT4 does not fully honor NoMutt...&lt;BR /&gt;
&lt;MUTTER&gt;&lt;MUTTER&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;
Frank Oquendo &lt;FRANKO&gt; wrote in message&lt;BR /&gt;
news:88s223$pko26@adesknews2.autodesk.com...&lt;BR /&gt;
&amp;gt; Where did you ever come across that one???&lt;/FRANKO&gt;&lt;/MUTTER&gt;&lt;/MUTTER&gt;</description>
      <pubDate>Thu, 06 Dec 2001 15:25:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/vba-forum/pause-symbol/m-p/315415#M95470</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2001-12-06T15:25:59Z</dc:date>
    </item>
  </channel>
</rss>

