<?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: Autocad commands not executing in time. in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595821#M68105</link>
    <description>i dont want to open file after modal dialog shows. I want to open file first and then display the modal dialog. so that i can read xrecords from drawing and show it in modal dialog.</description>
    <pubDate>Wed, 02 Dec 2009 12:28:18 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-12-02T12:28:18Z</dc:date>
    <item>
      <title>Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595815#M68099</link>
      <description>I have a c# application. If i net load it in autocad it will show a modal dialog. If i press a button in that form, it should hide and it should open a dwg file in autocad. and after opening i wrote the code to show another modal dialog. &lt;BR /&gt;
&lt;BR /&gt;
My problem is if i click the button it will directly show the second form without opening the dwg file. It will open only if i close the second form.&lt;BR /&gt;
Autocad commands is not executing in time. Can anyone suggest what may be the problem?&lt;BR /&gt;
&lt;BR /&gt;
// commands.cs file&lt;BR /&gt;
&lt;BR /&gt;
// This is how i am opening the dwg file &lt;BR /&gt;
Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.Open(filename, false);&lt;BR /&gt;
&lt;BR /&gt;
// Here i am opening the second form.&lt;BR /&gt;
objCreate = new CreateTemplate(std, filename, "Edit");      &lt;BR /&gt;
      Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(objCreate);&lt;BR /&gt;
&lt;BR /&gt;
thanks in advance&lt;BR /&gt;
&lt;BR /&gt;
Jithin

Edited by: jithin.dcs on Nov 30, 2009 8:58 AM</description>
      <pubDate>Mon, 30 Nov 2009 08:47:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595815#M68099</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-30T08:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595816#M68100</link>
      <description>Sorry, this isn't really enough code to diagnose the problem.&lt;BR /&gt;
&lt;BR /&gt;
In cases like this, the calling context is very relevant, all the&lt;BR /&gt;
way back to the command the user issues to start the dialog.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;JITHIN.DCS&gt; wrote in message news:6296332@discussion.autodesk.com...&lt;BR /&gt;
I have a c# application. If i net load it in autocad it will show a modal &lt;BR /&gt;
dialog. If i press a button in that form, it should hide and it should open &lt;BR /&gt;
a dwg file in autocad. and after opening i wrote the code to show another &lt;BR /&gt;
modal dialog.&lt;BR /&gt;
&lt;BR /&gt;
My problem is if i click the button it will directly show the second form &lt;BR /&gt;
without opening the dwg file. It will open only if i close the second form.&lt;BR /&gt;
Autocad commands is not executing in time. Can anyone suggest what may be &lt;BR /&gt;
the problem?&lt;BR /&gt;
&lt;BR /&gt;
// commands.cs file&lt;BR /&gt;
&lt;BR /&gt;
// This is how i am opening the dwg file&lt;BR /&gt;
Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument &lt;BR /&gt;
= &lt;BR /&gt;
Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.Open(filename, &lt;BR /&gt;
false);&lt;BR /&gt;
&lt;BR /&gt;
// Here i am opening the second form.&lt;BR /&gt;
objCreate = new CreateTemplate(std, filename, "Edit");&lt;BR /&gt;
      Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(objCreate);&lt;BR /&gt;
&lt;BR /&gt;
thanks in advance&lt;BR /&gt;
&lt;BR /&gt;
Jithin&lt;BR /&gt;
&lt;BR /&gt;
Edited by: jithin.dcs on Nov 30, 2009 8:58 AM&lt;/JITHIN.DCS&gt;</description>
      <pubDate>Mon, 30 Nov 2009 10:15:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595816#M68100</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-30T10:15:16Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595817#M68101</link>
      <description>hi,&lt;BR /&gt;
&lt;BR /&gt;
thanks for your reply.. here is the code&lt;BR /&gt;
&lt;BR /&gt;
// Button click&lt;BR /&gt;
private void btnEditTemplate_Click(object sender, EventArgs e)&lt;BR /&gt;
 {   &lt;BR /&gt;
   // Hiding the first modal dialog&lt;BR /&gt;
   this.Hide();&lt;BR /&gt;
   &lt;BR /&gt;
   // Function call to open the dwg file and show the second modal dialog (this function is in commands.cs file)&lt;BR /&gt;
   Commands.ShowTemplateEdit(filename, tvTemplates.SelectedNode.Parent.Text);         &lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
  // Function in commands.cs&lt;BR /&gt;
 // Function to show the drawing and edit template window (Only for edit)&lt;BR /&gt;
    static public void ShowTemplateEdit(string filename,string std)&lt;BR /&gt;
    { &lt;BR /&gt;
      // Declaring the second form object&lt;BR /&gt;
      CreateTemplate objCreate;&lt;BR /&gt;
&lt;BR /&gt;
      Editor ed = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;&lt;BR /&gt;
      &lt;BR /&gt;
      filenameforOpen = filename;    &lt;BR /&gt;
    &lt;BR /&gt;
     Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument =  Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.Open(filename, false);&lt;BR /&gt;
     &lt;BR /&gt;
      objCreate = new CreateTemplate(std, filename, "Edit");&lt;BR /&gt;
      Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(objCreate);      &lt;BR /&gt;
    }

Edited by: jithin.dcs on Nov 30, 2009 10:31 AM</description>
      <pubDate>Mon, 30 Nov 2009 10:28:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595817#M68101</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-30T10:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595818#M68102</link>
      <description>The only way I think you can do this, is to have the code that displays the &lt;BR /&gt;
dialog (e.g., calls Application.ShowModalDialog()) open the file, after the &lt;BR /&gt;
call to the latter returns.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;JITHIN.DCS&gt; wrote in message news:6296370@discussion.autodesk.com...&lt;BR /&gt;
hi,&lt;BR /&gt;
&lt;BR /&gt;
thanks for your reply.. here is the code&lt;BR /&gt;
&lt;BR /&gt;
// Button click&lt;BR /&gt;
private void btnEditTemplate_Click(object sender, EventArgs e)&lt;BR /&gt;
 {&lt;BR /&gt;
   // Hiding the first modal dialog&lt;BR /&gt;
   this.Hide();&lt;BR /&gt;
&lt;BR /&gt;
   // Function call to open the dwg file and show the second modal dialog &lt;BR /&gt;
(this function is in commands.cs file)&lt;BR /&gt;
   Commands.ShowTemplateEdit(filename, &lt;BR /&gt;
tvTemplates.SelectedNode.Parent.Text);&lt;BR /&gt;
 }&lt;BR /&gt;
&lt;BR /&gt;
  // Function in commands.cs&lt;BR /&gt;
 // Function to show the drawing and edit template window (Only for edit)&lt;BR /&gt;
    static public void ShowTemplateEdit(string filename,string std)&lt;BR /&gt;
    {&lt;BR /&gt;
      // Declaring the second form object&lt;BR /&gt;
      CreateTemplate objCreate;&lt;BR /&gt;
&lt;BR /&gt;
      Editor ed = &lt;BR /&gt;
Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument.Editor;&lt;BR /&gt;
&lt;BR /&gt;
      filenameforOpen = filename;&lt;BR /&gt;
&lt;BR /&gt;
     Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument &lt;BR /&gt;
= &lt;BR /&gt;
Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.Open(filename, &lt;BR /&gt;
false);&lt;BR /&gt;
&lt;BR /&gt;
      objCreate = new CreateTemplate(std, filename, "Edit");&lt;BR /&gt;
      Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(objCreate);&lt;BR /&gt;
    }&lt;BR /&gt;
&lt;BR /&gt;
Edited by: jithin.dcs on Nov 30, 2009 10:31 AM&lt;/JITHIN.DCS&gt;</description>
      <pubDate>Tue, 01 Dec 2009 20:36:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595818#M68102</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-01T20:36:57Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595819#M68103</link>
      <description>hi,&lt;BR /&gt;
&lt;BR /&gt;
thanks for your reply&lt;BR /&gt;
&lt;BR /&gt;
i have tried that also. I called show modal dialog and after showing the form i returned some value and then i tried to open file. The same thing happened here also. It showed the form only and not opened the file. If i close the form, then at that moment the file opens.. Actually i need to show some xdata information to the form from the opened file. So if this works also that will not help me..&lt;BR /&gt;
&lt;BR /&gt;
any other suggestions...?</description>
      <pubDate>Wed, 02 Dec 2009 07:32:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595819#M68103</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-02T07:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595820#M68104</link>
      <description>You don't show the CommandMethod that starts everything, and what &lt;BR /&gt;
CommandFlags it uses.&lt;BR /&gt;
&lt;BR /&gt;
Does it use CommandFlags.Session ?&lt;BR /&gt;
&lt;BR /&gt;
If so, there should be no problem opening a file after the call to &lt;BR /&gt;
ShowModalDialog() returns.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;JITHIN.DCS&gt; wrote in message news:6297749@discussion.autodesk.com...&lt;BR /&gt;
hi,&lt;BR /&gt;
&lt;BR /&gt;
thanks for your reply&lt;BR /&gt;
&lt;BR /&gt;
i have tried that also. I called show modal dialog and after showing the &lt;BR /&gt;
form i returned some value and then i tried to open file. The same thing &lt;BR /&gt;
happened here also. It showed the form only and not opened the file. If i &lt;BR /&gt;
close the form, then at that moment the file opens.. Actually i need to show &lt;BR /&gt;
some xdata information to the form from the opened file. So if this works &lt;BR /&gt;
also that will not help me..&lt;BR /&gt;
&lt;BR /&gt;
any other suggestions...?&lt;/JITHIN.DCS&gt;</description>
      <pubDate>Wed, 02 Dec 2009 08:12:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595820#M68104</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-02T08:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595821#M68105</link>
      <description>i dont want to open file after modal dialog shows. I want to open file first and then display the modal dialog. so that i can read xrecords from drawing and show it in modal dialog.</description>
      <pubDate>Wed, 02 Dec 2009 12:28:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595821#M68105</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-02T12:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595822#M68106</link>
      <description>You still haven't answered the question about your command and whether it &lt;BR /&gt;
runs in the application context or the document context.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;JITHIN.DCS&gt; wrote in message news:6297866@discussion.autodesk.com...&lt;BR /&gt;
i dont want to open file after modal dialog shows. I want to open file first&lt;BR /&gt;
and then display the modal dialog. so that i can read xrecords from drawing&lt;BR /&gt;
and show it in modal dialog.&lt;/JITHIN.DCS&gt;</description>
      <pubDate>Wed, 02 Dec 2009 18:24:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595822#M68106</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-02T18:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595823#M68107</link>
      <description>i am calling a function in the commands.cs file from the modal dialog's button click. This function (in commands.cs file) will open a drawing and then it should show the second modal dialog.  So in the document context only i am doing both the things..</description>
      <pubDate>Thu, 03 Dec 2009 04:14:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595823#M68107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-03T04:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595824#M68108</link>
      <description>hi&lt;BR /&gt;
&lt;BR /&gt;
i m also facing the same problem&lt;BR /&gt;
&lt;BR /&gt;
i prompt the user to select a starting point&lt;BR /&gt;
after selecting a point i will show a dialogbox which contains two buttons continue and End&lt;BR /&gt;
if user clicks on conitnue then i prompt the user to select the another point&lt;BR /&gt;
now i will pass these two points to a lisp command (by loading the lisp file and send these values)&lt;BR /&gt;
&lt;BR /&gt;
then a drawing is generated&lt;BR /&gt;
&lt;BR /&gt;
after drawing is generated i show the dialogbox whether to continue or end&lt;BR /&gt;
&lt;BR /&gt;
if user selects continue then the same process is repeated&lt;BR /&gt;
&lt;BR /&gt;
please help me</description>
      <pubDate>Thu, 03 Dec 2009 12:39:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595824#M68108</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-03T12:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595825#M68109</link>
      <description>I can't really help further without seeing the declaration of the method &lt;BR /&gt;
with the CommandMethod attribute.&lt;BR /&gt;
&lt;BR /&gt;
-- &lt;BR /&gt;
http://www.caddzone.com&lt;BR /&gt;
&lt;BR /&gt;
AcadXTabs: MDI Document Tabs for AutoCAD&lt;BR /&gt;
Supporting AutoCAD 2000 through 2010&lt;BR /&gt;
&lt;BR /&gt;
http://www.acadxtabs.com&lt;BR /&gt;
&lt;BR /&gt;
Email: string.Format("{0}@{1}.com", "tonyt", "caddzone");&lt;BR /&gt;
&lt;BR /&gt;
&lt;JITHIN.DCS&gt; wrote in message news:6298484@discussion.autodesk.com...&lt;BR /&gt;
i am calling a function in the commands.cs file from the modal dialog's &lt;BR /&gt;
button click. This function (in commands.cs file) will open a drawing and &lt;BR /&gt;
then it should show the second modal dialog.  So in the document context &lt;BR /&gt;
only i am doing both the things..&lt;/JITHIN.DCS&gt;</description>
      <pubDate>Thu, 03 Dec 2009 23:04:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595825#M68109</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-03T23:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595826#M68110</link>
      <description>hi,&lt;BR /&gt;
&lt;BR /&gt;
i solved the problem. as u said earlier, i used commandflags.session and inside the method i wrote code for both file open and show modal. then it worked properly. &lt;BR /&gt;
&lt;BR /&gt;
thank you very much for your support&lt;BR /&gt;
&lt;BR /&gt;
Jithin Shyam</description>
      <pubDate>Fri, 04 Dec 2009 04:30:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595826#M68110</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-04T04:30:59Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595827#M68111</link>
      <description>hi&lt;BR /&gt;
i too facing with the same problem&lt;BR /&gt;
&lt;BR /&gt;
but with a small difference , u r opening a dwg file&lt;BR /&gt;
but i m executing a lispfunction&lt;BR /&gt;
&lt;BR /&gt;
if u dont mind please can u tell me how you solved your problem&lt;BR /&gt;
with a sample code&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
thanks in advance&lt;BR /&gt;
&lt;BR /&gt;
vijay kumar</description>
      <pubDate>Fri, 04 Dec 2009 11:07:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595827#M68111</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-04T11:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Autocad commands not executing in time.</title>
      <link>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595828#M68112</link>
      <description>hi vijay,&lt;BR /&gt;
&lt;BR /&gt;
    I wrote code for opening a drawing as well as calling modal dialog show in the same command method and it has parameter command flags as session. &lt;BR /&gt;
&lt;BR /&gt;
for example&lt;BR /&gt;
&lt;BR /&gt;
 [CommandMethod("OpenDwg",CommandFlags.Session)]&lt;BR /&gt;
    static public void OpenDwg()&lt;BR /&gt;
    {&lt;BR /&gt;
             Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.Open(filenameforOpen, false);&lt;BR /&gt;
 &lt;BR /&gt;
        objcreate = new CreateTemplate(selectedStd, filenameforOpen, "Edit");&lt;BR /&gt;
        Autodesk.AutoCAD.ApplicationServices.Application.ShowModalDialog(objcreate); &lt;BR /&gt;
      }&lt;BR /&gt;
    }&lt;BR /&gt;
&lt;BR /&gt;
thanks&lt;BR /&gt;
&lt;BR /&gt;
Jithin Shyam S</description>
      <pubDate>Mon, 07 Dec 2009 04:26:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/autocad-commands-not-executing-in-time/m-p/2595828#M68112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-07T04:26:40Z</dc:date>
    </item>
  </channel>
</rss>

