<?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 Adding new tab in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571088#M68812</link>
    <description>I know how to add new tab for Options/Drafting Settings/Customize command in AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
Can any one please let me know how to add new Tab control to any other command which are tab extensible.?&lt;BR /&gt;
&lt;BR /&gt;
I am using C#.</description>
    <pubDate>Mon, 12 Oct 2009 17:37:53 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-10-12T17:37:53Z</dc:date>
    <item>
      <title>Adding new tab</title>
      <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571088#M68812</link>
      <description>I know how to add new tab for Options/Drafting Settings/Customize command in AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
Can any one please let me know how to add new Tab control to any other command which are tab extensible.?&lt;BR /&gt;
&lt;BR /&gt;
I am using C#.</description>
      <pubDate>Mon, 12 Oct 2009 17:37:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571088#M68812</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-12T17:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new tab</title>
      <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571089#M68813</link>
      <description>The dialogs you can add tabs to have corresponding events on the Application &lt;BR /&gt;
object (with names like 'DisplayingXxxxxDialog"). The way you add tabs is &lt;BR /&gt;
pretty much the same as how you add tabs to the Options 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;VEDAMURTHY.T.G&gt; wrote in message &lt;BR /&gt;
news:6270030@discussion.autodesk.com...&lt;BR /&gt;
I know how to add new tab for Options/Drafting Settings/Customize command in &lt;BR /&gt;
AutoCAD.&lt;BR /&gt;
&lt;BR /&gt;
Can any one please let me know how to add new Tab control to any other &lt;BR /&gt;
command which are tab extensible.?&lt;BR /&gt;
&lt;BR /&gt;
I am using C#.&lt;/VEDAMURTHY.T.G&gt;</description>
      <pubDate>Mon, 12 Oct 2009 20:40:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571089#M68813</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-12T20:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new tab</title>
      <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571090#M68814</link>
      <description>Thanks for the reply.&lt;BR /&gt;
&lt;BR /&gt;
I was not able to see any other events apart from for these 3 dialog!!!&lt;BR /&gt;
&lt;BR /&gt;
Actually I am trying to add Tab for &lt;B&gt;Vports&lt;/B&gt; command and &lt;B&gt;AECPROJECTSTANDARDS&lt;/B&gt; command of AutoCAD Architecture.&lt;BR /&gt;
I have read in API documentation, you can add tab to any tab extensible dialog. But there is no list of dialog which can be extended or unless there is an event to do so.&lt;BR /&gt;
&lt;BR /&gt;
Can you please guide me further on how to add Tabs for above 2 dialogs.</description>
      <pubDate>Tue, 13 Oct 2009 04:59:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571090#M68814</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-13T04:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new tab</title>
      <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571091#M68815</link>
      <description>That's because they are the only dialogs you can add tabs to.&lt;BR /&gt;
&lt;BR /&gt;
I can't tell you much about the AECPROJECTSTANDARDS dialog, but if the &lt;BR /&gt;
dialog is not a managed component and there's no API that is for extending &lt;BR /&gt;
it, there's not much chance you can do it, other than by resorting to &lt;BR /&gt;
raw/native WinAPI hooks and calls.&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;VEDAMURTHY.T.G&gt; wrote in message &lt;BR /&gt;
news:6270261@discussion.autodesk.com...&lt;BR /&gt;
Thanks for the reply.&lt;BR /&gt;
&lt;BR /&gt;
I was not able to see any other events apart from for these 3 dialog!!!&lt;BR /&gt;
&lt;BR /&gt;
Actually I am trying to add Tab for &lt;B&gt;Vports&lt;/B&gt; command and &lt;BR /&gt;
&lt;B&gt;AECPROJECTSTANDARDS&lt;/B&gt; command of AutoCAD Architecture.&lt;BR /&gt;
I have read in API documentation, you can add tab to any tab extensible &lt;BR /&gt;
dialog. But there is no list of dialog which can be extended or unless there &lt;BR /&gt;
is an event to do so.&lt;BR /&gt;
&lt;BR /&gt;
Can you please guide me further on how to add Tabs for above 2 dialogs.&lt;/VEDAMURTHY.T.G&gt;</description>
      <pubDate>Tue, 13 Oct 2009 17:12:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571091#M68815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-13T17:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new tab</title>
      <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571092#M68816</link>
      <description>Thank you very much.&lt;BR /&gt;
I understand only 3 dialogs can be extended.&lt;BR /&gt;
&lt;BR /&gt;
Any chances achieving it through ObjectArx?&lt;BR /&gt;
&lt;BR /&gt;
Is ObjectArx is more powerful API as compared ti .NET API?&lt;BR /&gt;
(That is you can achieve something which can’t be done in .NET)&lt;BR /&gt;
I guess it mayn't be as .NET classes are wrapper classes of ObjectArx.

Edited by: vedamurthy.t.g@tantrainfosolutions.com on Oct 14, 2009 9:45 AM</description>
      <pubDate>Wed, 14 Oct 2009 04:11:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571092#M68816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-14T04:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Adding new tab</title>
      <link>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571093#M68817</link>
      <description>I already told you the answer to your question.&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;VEDAMURTHY.T.G&gt; wrote in message &lt;BR /&gt;
news:6270998@discussion.autodesk.com...&lt;BR /&gt;
Thank you very much.&lt;BR /&gt;
I understand only 3 dialogs can be extended.&lt;BR /&gt;
&lt;BR /&gt;
Any chances achieving it through ObjectArx?&lt;BR /&gt;
&lt;BR /&gt;
Is ObjectArx is more powerful API as compared ti .NET API?&lt;BR /&gt;
(That is you can achieve something which can't be done in .NET)&lt;BR /&gt;
I guess it mayn't be as .NET classes are wrapper classes of ObjectArx.&lt;BR /&gt;
&lt;BR /&gt;
Edited by: vedamurthy.t.g@tantrainfosolutions.com on Oct 14, 2009 9:45 AM&lt;/VEDAMURTHY.T.G&gt;</description>
      <pubDate>Wed, 14 Oct 2009 04:46:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/adding-new-tab/m-p/2571093#M68817</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-14T04:46:19Z</dc:date>
    </item>
  </channel>
</rss>

