<?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: Edit APJ details (Autocad Arch.) in a new palette in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069930#M8322</link>
    <description>&lt;P&gt;Ok, text box done; showing correct value:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Captura de Tela (629).png" style="width: 424px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1234929i8A6370CFBAD5F30C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura de Tela (629).png" alt="Captura de Tela (629).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* the label texts will be hardcoded, I don't need to edit then;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code for now, using only right side of the detail:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        public static string GetDetailValue(int _prop,int _pair)
        {
            ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
            ProjectFileName projectFileName = projectManager.CurrentProjectFileName;
            Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);
            ProjectStringProperty stringProp = (ProjectStringProperty)activeProj.Configuration.StringProperties[_prop];
            StringPair strpair = (StringPair)stringProp.StringPairs[_pair];
            return strpair.Right;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next step, save back changes in the text field&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jun 2023 17:38:21 GMT</pubDate>
    <dc:creator>faugustom</dc:creator>
    <dc:date>2023-06-29T17:38:21Z</dc:date>
    <item>
      <title>Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12064302#M8315</link>
      <description>&lt;P&gt;Hi all;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm new in programming; know only the very basics;&lt;/P&gt;&lt;P&gt;My goal is to edit the project details in AutoCAD Architecture using a tool palette;&lt;BR /&gt;Form my little knowledge, I have an empty palette set with this files;&lt;/P&gt;&lt;P&gt;- MyPaletteSet.cs;&lt;BR /&gt;- MyCommands.cs;&lt;BR /&gt;&lt;BR /&gt;My questions are:&lt;BR /&gt;- How and where to load the apj file;&lt;BR /&gt;- How to show a especifique detail, like this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;	&amp;lt;Details Name="Obra"&amp;gt;
		&amp;lt;Entry Name="Data" Value="01/01/2023"/&amp;gt;
	&amp;lt;/Details&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;in a textbox field, then change it and save back to APJ file;&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14801"&gt;@Ed__Jobe&lt;/a&gt;, I was asking in the AUGI forum (&lt;A href="https://forums.augi.com/showthread.php?67326-ACA-2008-Project-Details&amp;amp;p=1354550#post1354550" target="_blank"&gt;https://forums.augi.com/showthread.php?67326-ACA-2008-Project-Details&amp;amp;p=1354550#post1354550&lt;/A&gt;); It would be a similar program, but running on the palette;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks'&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 16:48:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12064302#M8315</guid>
      <dc:creator>faugustom</dc:creator>
      <dc:date>2023-06-27T16:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12064338#M8316</link>
      <description>&lt;P&gt;If i remember right, the apj file is just an xml file with the extension renamed. You would need an api for the project similar to the &lt;A href="https://help.autodesk.com/view/OARX/2023/ENU/?guid=GUID-56F608AE-CEB3-471E-8A64-8C909B989F24" target="_blank" rel="noopener"&gt;SheetSet api&lt;/A&gt;. I haven't used ACA for years, and I don't have it installed so I can't tell you if an api is available. But since it's an xml, you could create your own api to read/write the apj. I think that ACA installs some dll's and COM type libraries, so you could look there for an apj api.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 17:06:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12064338#M8316</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2023-06-27T17:06:08Z</dc:date>
    </item>
    <item>
      <title>回复： Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12064724#M8317</link>
      <description>&lt;P&gt;Add reference to "C:\Program Files\Autodesk\AutoCAD xxxx\ACA\AecProjectBaseMgd.dll".&lt;BR /&gt;using Autodesk.Aec.Project;&lt;/P&gt;&lt;P&gt;Example in "C:\Program Files\Autodesk\AutoCAD xxxx\Sample\CS.NET\AecProjectBaseSampleMgd".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is old so it may have changed:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;Autodesk.Aec.Project&lt;/STRONG&gt; – The main project class.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Autodesk.Aec.ProjectBaseManager&lt;/STRONG&gt; – The system wide Project Manager. This contains many utility methods to manipulate projects.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Autodesk.Aec.ProjectBaseServices&lt;/STRONG&gt; – A helper class used to obtain the single ProjectBaseManager object.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Autodesk.Aec.ProjectConfiguration&lt;/STRONG&gt; – Contains information about the project (such as the name, description, and number).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;UI Interaction from API requires the use of commands:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;STRONG&gt;_AecProjectNavigator&lt;/STRONG&gt; – This a documented command that will display the project navigator palette. If there is no “current” project, the command will also run the Project Browser dialog.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;_AecRefreshProject&lt;/STRONG&gt; – This refreshes mainly the palette. Note that the API has a different method to reload a project, but is different than this command. This command does the same as the refresh project button on the palette.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;_AecSetCurrentProject&lt;/STRONG&gt; – This is currently the only way to properly set a project as current from the API.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;_AecCloseProjectNavigator&lt;/STRONG&gt; – Closes the project navigator palette. Note it only closes the dialog and the same project is still open and current.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;_AecProjectNavigatorToggle&lt;/STRONG&gt; – Simply toggles the project navigator palette on or off.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 20:32:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12064724#M8317</guid>
      <dc:creator>Gepaha</dc:creator>
      <dc:date>2023-06-27T20:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069525#M8318</link>
      <description>&lt;P&gt;Some progress...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using this code from another thread, I can read the first details of the firt section:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        public static string GetDetailValue()
        {
            ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
            ProjectFileName projectFileName = projectManager.CurrentProjectFileName;
            Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);

            string returnValue = string.Empty;

            foreach (ProjectStringProperty stringProp in activeProj.Configuration.StringProperties)
            {
                string a = stringProp.Name;

                foreach (StringPair strpair in stringProp.StringPairs)
                {
                    string b = strpair.Left;
                    string c = strpair.Right;

                    returnValue = String.Concat(a, b, c);

                    return returnValue;
                }

                return returnValue;
            }

            return returnValue;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;EM&gt;foreach&lt;/EM&gt; functions weall, but I want to access each item individually;&lt;/P&gt;&lt;P&gt;Somehow, I have to access the&amp;nbsp;&lt;EM&gt;ProjectStringProperty&lt;/EM&gt;&amp;nbsp;from &lt;EM&gt;activeProj.Configuration.StringProperties&lt;/EM&gt;, an then strpair from stringPair... but I didn't discovered how it is indexed...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 15:25:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069525#M8318</guid>
      <dc:creator>faugustom</dc:creator>
      <dc:date>2023-06-29T15:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069545#M8319</link>
      <description>&lt;P data-unlink="true"&gt;Download Notepad++&amp;nbsp; and open the apj file and select xml as the format. Then you can read the sections.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 15:33:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069545#M8319</guid>
      <dc:creator>Ed__Jobe</dc:creator>
      <dc:date>2023-06-29T15:33:28Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069603#M8320</link>
      <description>&lt;P&gt;Analyzing the code you go through only one loop. Use "return returnValue;" only at the end.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public static void ListProjectDetails()
{
    Editor ed = Application.DocumentManager.MdiActiveDocument.Editor;
    ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
    Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);

    foreach (ProjectStringProperty stringProp in activeProj.Configuration.StringProperties)
    {
       foreach (StringPair strpair in stringProp.StringPairs)
       {                    
          ed.WriteMessage($"\nName: {stringProp.Name}, Left: {strpair.Left}, Right: {strpair.Right}");
       }                
    }           
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gphanauer_1-1688056757448.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1234873i8713D948F1DCB3F4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gphanauer_1-1688056757448.png" alt="gphanauer_1-1688056757448.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gphanauer_2-1688056812484.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1234876iE244652B8717018D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gphanauer_2-1688056812484.png" alt="gphanauer_2-1688056812484.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gphanauer_3-1688057189265.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1234882i7BCDA7DADE5C32AF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="gphanauer_3-1688057189265.png" alt="gphanauer_3-1688057189265.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 17:26:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069603#M8320</guid>
      <dc:creator>Gepaha</dc:creator>
      <dc:date>2023-06-29T17:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069895#M8321</link>
      <description>&lt;P&gt;Ok, now I'm able to read the details contents by their index (inside []):&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        public static string GetDetailValue()
        {
            ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
            ProjectFileName projectFileName = projectManager.CurrentProjectFileName;
            Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);
            ProjectStringProperty stringProp = (ProjectStringProperty)activeProj.Configuration.StringProperties[0];
            StringPair strpair = (StringPair)stringProp.StringPairs[1];
                string a = stringProp.Name;
                string b = strpair.Left;
                string c = strpair.Right;
                            
                return String.Concat(a, b, c);
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next steps are:&amp;nbsp;&lt;BR /&gt;- put this values in a text field;&lt;BR /&gt;- save back the changes made in the palette;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 17:29:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069895#M8321</guid>
      <dc:creator>faugustom</dc:creator>
      <dc:date>2023-06-29T17:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069930#M8322</link>
      <description>&lt;P&gt;Ok, text box done; showing correct value:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Captura de Tela (629).png" style="width: 424px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1234929i8A6370CFBAD5F30C/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura de Tela (629).png" alt="Captura de Tela (629).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* the label texts will be hardcoded, I don't need to edit then;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code for now, using only right side of the detail:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        public static string GetDetailValue(int _prop,int _pair)
        {
            ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
            ProjectFileName projectFileName = projectManager.CurrentProjectFileName;
            Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);
            ProjectStringProperty stringProp = (ProjectStringProperty)activeProj.Configuration.StringProperties[_prop];
            StringPair strpair = (StringPair)stringProp.StringPairs[_pair];
            return strpair.Right;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next step, save back changes in the text field&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 17:38:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12069930#M8322</guid>
      <dc:creator>faugustom</dc:creator>
      <dc:date>2023-06-29T17:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Edit APJ details (Autocad Arch.) in a new palette</title>
      <link>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12072744#M8323</link>
      <description>&lt;P&gt;Ok, it's done!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1. read the APJ file and print the result in a text box:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MyCommands.cs&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        public static string GetDetailValue(int _prop, int _pair)
        {
            ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
            Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);

            ProjectStringProperty stringProp = (ProjectStringProperty)activeProj.Configuration.StringProperties[_prop];
            StringPair strPair = (StringPair)stringProp.StringPairs[_pair];
            return strPair.Right;
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Palette.Designer.cs&lt;/P&gt;&lt;LI-CODE lang="general"&gt;            // textBox_0_1
            ...
            this.textBox_0_1.Name = "textBox_0_1";
            this.textBox_0_1.Text = MyCommands.GetDetailValue(0,1);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. Saving the changes to APJ file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MyCommands.cs:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        public static void SetDetailValue(int _prop, int _pair, string _right)
        {
            ProjectBaseManager projectManager = ProjectBaseServices.Service.ProjectManager;
            Project activeProj = projectManager.OpenProject(OpenMode.ForRead, projectManager.CurrentProjectFileName.Path);

            projectManager.UpgradeOpen(activeProj);

            ProjectStringProperty stringProp = (ProjectStringProperty)activeProj.Configuration.StringProperties[_prop];
            StringPair strPair = (StringPair)stringProp.StringPairs[_pair];

            string _left = strPair.Left;

            StringPair newPair = new StringPair(_left, _right);

            stringProp.StringPairs.RemoveAt(_pair);
            stringProp.StringPairs.Insert(_pair, newPair);
            if (activeProj.IsUpdateProjectFileNeeded)
            {
                ProjectFile prjFile = new ProjectFile(activeProj);
                prjFile.DrawingFullPath = ProjectBaseServices.Service.ProjectManager.CurrentProjectFileName.Path;
                bool b = activeProj.UpdateFile(prjFile);
                activeProj.UpdateProjectInformationInDwg(prjFile);
            }
            bool isGoodSave = projectManager.SaveProject(activeProj);
            projectManager.DowngradeOpen(activeProj);
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Palette.Designer.cs&lt;/P&gt;&lt;LI-CODE lang="general"&gt;            // textBox_0_1
            ...
            this.textBox_0_1.LostFocus += new System.EventHandler(this.textBox_0_1_TextLostFocus);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Palette.cs&lt;/P&gt;&lt;LI-CODE lang="general"&gt;        private void textBox_0_1_TextLostFocus(object sender, System.EventArgs e)
        {
            string _value = textBox_0_1.Text;
            MyCommands.SetDetailValue(0,1,_value);
        }&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 30 Jun 2023 20:30:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/edit-apj-details-autocad-arch-in-a-new-palette/m-p/12072744#M8323</guid>
      <dc:creator>faugustom</dc:creator>
      <dc:date>2023-06-30T20:30:12Z</dc:date>
    </item>
  </channel>
</rss>

