<?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 Problem with interaction SendStringToExecute and SetImpliedSelection in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521076#M54820</link>
    <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have an problem with interaction between &lt;STRONG&gt;SendStringToExecute&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;SetImpliedSelection.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In following example work the SetImpliedSelection fine without the&amp;nbsp;SendStringToExecute,&lt;/P&gt;&lt;P&gt;but with the SendStringToExecute do&amp;nbsp;SetImpliedSelection nothing.&lt;/P&gt;&lt;P&gt;Why??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;PRE&gt;        [CommandMethod("-SELTEST", CommandFlags.Transparent | CommandFlags.UsePickSet | CommandFlags.Redraw | CommandFlags.Modal)]
        public void SELTEST()
        {
            Autodesk.AutoCAD.EditorInput.Editor acEditor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.
                                                           MdiActiveDocument.Editor;
            Autodesk.AutoCAD.DatabaseServices.ObjectIdCollection acObjectIdCollection;
            if (acEditor.SelectImplied().Value != null)
            {
                Autodesk.AutoCAD.EditorInput.PromptSelectionResult acPromptSelectionResult = acEditor.SelectImplied();                
                if (acPromptSelectionResult.Status == Autodesk.AutoCAD.EditorInput.PromptStatus.OK)
                    acObjectIdCollection = new Autodesk.AutoCAD.DatabaseServices.ObjectIdCollection(acPromptSelectionResult.Value.GetObjectIds());
                else
                    acObjectIdCollection = new Autodesk.AutoCAD.DatabaseServices.ObjectIdCollection();
                
                // 2 Elements remove from selection for Check                              
                acObjectIdCollection.RemoveAt(0);
                acObjectIdCollection.RemoveAt(0);
                
                // ToArray
                Autodesk.AutoCAD.DatabaseServices.ObjectId[] oIDArray = new Autodesk.AutoCAD.DatabaseServices.ObjectId[acObjectIdCollection.Count];
                acObjectIdCollection.CopyTo(oIDArray,0);

                // SendCommand (without this sendcommand work the SetImpliedSelection fine)
                Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.SendStringToExecute("_zoom _a ", false, false, false);

                //Set SelectionSet
                acEditor.SetImpliedSelection(oIDArray); // don't work
            }
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;regards Mario&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jun 2012 10:29:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-06-29T10:29:58Z</dc:date>
    <item>
      <title>Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521076#M54820</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i have an problem with interaction between &lt;STRONG&gt;SendStringToExecute&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;SetImpliedSelection.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In following example work the SetImpliedSelection fine without the&amp;nbsp;SendStringToExecute,&lt;/P&gt;&lt;P&gt;but with the SendStringToExecute do&amp;nbsp;SetImpliedSelection nothing.&lt;/P&gt;&lt;P&gt;Why??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Code:&lt;/P&gt;&lt;PRE&gt;        [CommandMethod("-SELTEST", CommandFlags.Transparent | CommandFlags.UsePickSet | CommandFlags.Redraw | CommandFlags.Modal)]
        public void SELTEST()
        {
            Autodesk.AutoCAD.EditorInput.Editor acEditor = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.
                                                           MdiActiveDocument.Editor;
            Autodesk.AutoCAD.DatabaseServices.ObjectIdCollection acObjectIdCollection;
            if (acEditor.SelectImplied().Value != null)
            {
                Autodesk.AutoCAD.EditorInput.PromptSelectionResult acPromptSelectionResult = acEditor.SelectImplied();                
                if (acPromptSelectionResult.Status == Autodesk.AutoCAD.EditorInput.PromptStatus.OK)
                    acObjectIdCollection = new Autodesk.AutoCAD.DatabaseServices.ObjectIdCollection(acPromptSelectionResult.Value.GetObjectIds());
                else
                    acObjectIdCollection = new Autodesk.AutoCAD.DatabaseServices.ObjectIdCollection();
                
                // 2 Elements remove from selection for Check                              
                acObjectIdCollection.RemoveAt(0);
                acObjectIdCollection.RemoveAt(0);
                
                // ToArray
                Autodesk.AutoCAD.DatabaseServices.ObjectId[] oIDArray = new Autodesk.AutoCAD.DatabaseServices.ObjectId[acObjectIdCollection.Count];
                acObjectIdCollection.CopyTo(oIDArray,0);

                // SendCommand (without this sendcommand work the SetImpliedSelection fine)
                Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.SendStringToExecute("_zoom _a ", false, false, false);

                //Set SelectionSet
                acEditor.SetImpliedSelection(oIDArray); // don't work
            }
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;regards Mario&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2012 10:29:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521076#M54820</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-29T10:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521644#M54821</link>
      <description>&lt;P&gt;Actually, the SetImpliedSelection Is working just fine.&amp;nbsp; SendStringToExecute is Asynchronous, so your zoom command runs after the SetImpliedSelection, and clears the selection.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2012 15:46:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521644#M54821</guid>
      <dc:creator>chiefbraincloud</dc:creator>
      <dc:date>2012-06-29T15:46:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521866#M54822</link>
      <description>&lt;P&gt;Instead of using SendStringToExecute("_ZOOM _A "); you can use ZoomExtents (or ZoomAll):&lt;/P&gt;
&lt;PRE&gt;public static void ZoomExtents()
{
   object acad = Application.AcadApplication;
   acad.GetType().InvokeMember("ZoomExtents", BindingFlags.InvokeMethod, null, acad, null);
}&lt;BR /&gt;
public static void ZoomAll()
{
   object acad = Application.AcadApplication;
   acad.GetType().InvokeMember("ZoomAll", BindingFlags.InvokeMethod, null, acad, null);
}&lt;BR /&gt;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;which can be done synchronously with your's code.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2012 17:17:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521866#M54822</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2012-06-29T17:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521906#M54823</link>
      <description>&lt;P&gt;Thanks Alexander.&amp;nbsp; I was going to suggest using a graphics system manager to manipulate the view, but it would require that he calculate the extents, which would obviously add a lot of code.&amp;nbsp; I didn't think&amp;nbsp;about invoking a COM call.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2012 17:33:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3521906#M54823</guid>
      <dc:creator>chiefbraincloud</dc:creator>
      <dc:date>2012-06-29T17:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522194#M54824</link>
      <description>&lt;P&gt;Hallo,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for your notes, but the problem is not the "zoom" command. The example code is only a quick and dirty example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the Application i select the entities or use the pre-selection and take a user input for "new Elevation"&lt;/P&gt;&lt;P&gt;after this i calulate a new ucs and set the editor.currentucs (or smiliar, just i have no autocad).&lt;/P&gt;&lt;P&gt;Now i calling the "_plan&amp;nbsp; " command to view planar to ucs, '(load "...")' the flatten.lsp with SendCommand.&lt;/P&gt;&lt;P&gt;Then i would like to set the "SetImpliedSelection" with the Objectidcollection from begin of the app and&lt;/P&gt;&lt;P&gt;lastly i calling the "flatten" command. (the origin flatten.lsp i have modify to complete silent)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;On debug is set the editor.ImpliedSelection okay&amp;nbsp;but on flatten comes to nothing.&lt;/P&gt;&lt;P&gt;I&amp;nbsp;think ist a effect of the asynchronous for SendStringToExecute.&lt;/P&gt;&lt;P&gt;There is a synchronous variant of SendStringToExecute?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;@Alexander:&lt;/P&gt;&lt;P&gt;On next Monday i test the : &lt;STRONG&gt;acad.GetType().InvokeMember&amp;nbsp; &lt;/STRONG&gt;for my Application.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;until then a nice weekend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards Mario&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2012 20:49:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522194#M54824</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-06-29T20:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522232#M54825</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;There is a synchronous variant of SendStringToExecute?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;A href="http://adndevblog.typepad.com/autocad/2012/04/synchronously-send-and-wait-for-commands-in-autocad-using-c-net.html" target="_blank"&gt;http://adndevblog.typepad.com/autocad/2012/04/synchronously-send-and-wait-for-commands-in-autocad-using-c-net.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2012 21:10:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522232#M54825</guid>
      <dc:creator>Alexander.Rivilis</dc:creator>
      <dc:date>2012-06-29T21:10:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522520#M54826</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can wrap the P/Invoked acedCmd in an helper 'Command' method. See here:&lt;/P&gt;&lt;P&gt;&lt;A target="_blank" href="http://www.theswamp.org/index.php?topic=31886.msg460020#msg460020"&gt;http://www.theswamp.org/index.php?topic=31886.msg460020#msg460020&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then use it as the LISP command function:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Command("_.circle", Point3d.Origin, 10.0);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Command("_.move", selSet,&amp;nbsp;&lt;SPAN&gt;Point3d.Origin, new Point3d(10.0, 20.0, 0.0));&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jun 2012 18:17:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522520#M54826</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2012-06-30T18:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522952#M54827</link>
      <description>&lt;P&gt;Hello Alexander and _gile&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the examples of "send synchronously commands" works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But now i have one problem by send command '(load "C:/test.lsp")'.&lt;/P&gt;&lt;P&gt;AutoCAD response "LISP command not available"!?&lt;/P&gt;&lt;P&gt;How can i load the lsp-file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i load the lisp-file on appload automatically then don't find AutoCAD&lt;/P&gt;&lt;P&gt;the lispfunction, response "unknown command". But when i input the same&lt;/P&gt;&lt;P&gt;command in the AutoCAD-Commandline then works the command !?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards Mario&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2012 02:36:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3522952#M54827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-02T02:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3523570#M54828</link>
      <description>&lt;P&gt;(load...) is not a command. &amp;nbsp;The acedCmd() method only accepts commands and the input they request..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To execute LISP you could use acedEvaluateLisp() or acedInvoke() via P/Invoke.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2012 15:59:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3523570#M54828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-02T15:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with interaction SendStringToExecute and SetImpliedSelection</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3524072#M54829</link>
      <description>&lt;P&gt;Tony T.&lt;/P&gt;&lt;P&gt;Are you the Tony T that is all over these boards and metioned in Jerry Winters book?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2012 21:22:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3524072#M54829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-02T21:22:00Z</dc:date>
    </item>
    <item>
      <title>Re: ... i give up ...</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3524242#M54830</link>
      <description>&lt;P&gt;... i give up ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now i have test all variants of send lisp-Command. No variant works for (load "abc.lsp").&lt;/P&gt;&lt;P&gt;And no synchron commandcalling-variant can call a lisp-exported command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My Solution:&lt;/P&gt;&lt;P&gt;I load the lisp-file over "Appload" and call the lisp-exported function as lasted in my app over "SendStringToExecute".&lt;/P&gt;&lt;P&gt;This works.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2012 01:43:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3524242#M54830</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-03T01:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: ... i give up ... but still found something</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3524270#M54831</link>
      <description>&lt;P&gt;i have found in &lt;A target="_blank" href="http://www.theswamp.org/index.php?topic=40540.msg458510#msg458510"&gt;TheSwamp&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When .net function set the "&lt;FONT color="#2b91af" face="Consolas" size="2"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;CommandFlags&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;.Session" then works the&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;..&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;((Autodesk.AutoCAD.Interop.&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;AcadApplication&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;)Autodesk.AutoCAD.ApplicationServices.&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;&lt;FONT color="#2b91af" size="2" face="Consolas"&gt;Application&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;.AcadApplication).ActiveDocument.SendCommand(commandstring);&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;..&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;Synchronously. And does what i want.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;regards ... over and out ...&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;&lt;FONT size="2" face="Consolas"&gt;Mario&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jul 2012 02:50:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/3524270#M54831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-07-03T02:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: ... i give up ... but still found something</title>
      <link>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/8603280#M54832</link>
      <description>&lt;P&gt;Made my day! Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 16:21:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/problem-with-interaction-sendstringtoexecute-and/m-p/8603280#M54832</guid>
      <dc:creator>haw</dc:creator>
      <dc:date>2019-02-18T16:21:30Z</dc:date>
    </item>
  </channel>
</rss>

