<?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: c# pallete create in .NET Forum</title>
    <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707498#M26971</link>
    <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a window floating(modeless) like PalatteSet, but no the frame of the PaletteSet, then why use PaletteSet? You can simply create a winForm/WPF window and show it as modeless dialog/window, whoch you can set the winform/wpf window as borderless (but you surely want provide a way for user to close/hide the form/window, don't you?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Oct 2021 18:44:47 GMT</pubDate>
    <dc:creator>norman.yuan</dc:creator>
    <dc:date>2021-10-22T18:44:47Z</dc:date>
    <item>
      <title>c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843170#M26954</link>
      <description>&lt;P&gt;&lt;SPAN&gt;hello kean if you have me in c # environment send autocad palette creation file I need this much mail address cihanbaki2144@gmail.com&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 14:03:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843170#M26954</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-10T14:03:14Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843250#M26955</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A good practice should be:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Define the commands (PC, Method1, Method2, Method3, Method4 and TEST) decoring them with the CommandMethod attribute so that they work as expected when called from AutoCAD Command line.&lt;/LI&gt;
&lt;LI&gt;Add a UserControl to the project with the buttons and define the Click handler of each button to launch the corresponding command with SendStringToExecute() method.&lt;/LI&gt;
&lt;LI&gt;Define a class deriving from PaletteSet to host the UserControl.&lt;/LI&gt;
&lt;LI&gt;Define a command to show the palette.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 15:22:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843250#M26955</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-03-10T15:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843262#M26956</link>
      <description>&lt;P&gt;Here's a short example&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Commands class&lt;/P&gt;
&lt;PRE&gt;    public class Commands
    {
        [CommandMethod("PC")]
        public void Pc()
        {
            // here the code of the PC command
        }

        [CommandMethod("Method1")]
        public void Method1()
        {
            // here the code of the Method1 command
        }

        [CommandMethod("Method2")]
        public void Method2()
        {
            // here the code of the Method2 command
        }

        [CommandMethod("Method3")]
        public void Method3()
        {
            // here the code of the Method3 command
        }

        [CommandMethod("Method4")]
        public void Method4()
        {
            // here the code of the Method4 command
        }

        [CommandMethod("TEST")]
        public void Test()
        {
            // here the code of the TEST command
        }

        static CustomPaletteSet palette;

        [CommandMethod("CMDPALETTE")]
        public void CmdPalette()
        {
            if (palette == null)
                palette = new CustomPaletteSet();
            palette.Visible = true;
        }
    }

&lt;/PRE&gt;
&lt;P&gt;The Palettetab class (UserControl)&amp;nbsp; with the buttons event handlers&lt;/P&gt;
&lt;PRE&gt;    public partial class PaletteTab : UserControl
    {
        public PaletteTab()
        {
            InitializeComponent();
        }

        private void btnPc_Click(object sender, EventArgs e)
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            if (doc != null)
                doc.SendStringToExecute("PC ", false, false, true);
        }

        private void btnMethod1_Click(object sender, EventArgs e)
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            if (doc != null)
                doc.SendStringToExecute("Method1 ", false, false, true);
        }

        private void btnMethod2_Click(object sender, EventArgs e)
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            if (doc != null)
                doc.SendStringToExecute("Method2 ", false, false, true);
        }

        private void btnMethod3_Click(object sender, EventArgs e)
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            if (doc != null)
                doc.SendStringToExecute("Method3 ", false, false, true);
        }

        private void btnMethod4_Click(object sender, EventArgs e)
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            if (doc != null)
                doc.SendStringToExecute("Method4 ", false, false, true);
        }

        private void btnTest_Click(object sender, EventArgs e)
        {
            var doc = AcAp.DocumentManager.MdiActiveDocument;
            if (doc != null)
                doc.SendStringToExecute("TEST ", false, false, true);
        }
    }&lt;/PRE&gt;
&lt;P&gt;The CustomPaletteSet class&lt;/P&gt;
&lt;PRE&gt;    public class CustomPaletteSet : PaletteSet
    {
        public CustomPaletteSet()
            : base("COMMANDS", "CMDPALETTE", new Guid("{CB44AAE8-B3C8-4F97-817B-D5F96FDB3C1C}"))
        {
            Style = PaletteSetStyles.ShowAutoHideButton |
                    PaletteSetStyles.ShowCloseButton |
                    PaletteSetStyles.ShowPropertiesMenu;
            MinimumSize = new System.Drawing.Size(150, 220);
            Add("Tab", new PaletteTab());
        }
    }&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Mar 2018 15:37:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843262#M26956</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-03-10T15:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843263#M26957</link>
      <description>&lt;P&gt;&lt;SPAN&gt;do you have a situation to mail me in a form of example I do not know too much yemiyorum mail can cihanbaki2147@gmail.com&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 15:38:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843263#M26957</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-10T15:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843333#M26958</link>
      <description>&lt;P&gt;I can try to help you here, in the forum, but I won't&amp;nbsp; communicate by mail.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you clearly expose what you're trying to achieve, and show what you have done so far, you should get help from more people and every one could benefit of the discussion.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 16:57:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843333#M26958</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-03-10T16:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843356#M26959</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I would like to add the palette creation phase as a video, which is more useful, I add the code, it gives an error, thank you very much for your video.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 17:17:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843356#M26959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-10T17:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843429#M26960</link>
      <description>&lt;P&gt;If you want to get some help, please, give more precision about what you're already able to do and what you need help for.&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 18:54:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843429#M26960</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-03-10T18:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843449#M26961</link>
      <description>&lt;PRE&gt;&lt;SPAN&gt;you will correct the mistakes in the article you added to the form and add the final form to you.&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:18:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843449#M26961</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-10T19:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843458#M26962</link>
      <description>&lt;P&gt;&lt;SPAN&gt;you can correct the errors in the file and add the final state.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:29:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843458#M26962</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-10T19:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843474#M26963</link>
      <description>&lt;P&gt;I uploaded the wrong files. Could you upload these files to the forum after fixing these errors? I apologize for tiring you&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 19:51:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843474#M26963</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-10T19:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843558#M26964</link>
      <description>&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;Obviously you are missing the basics of .NET programming.&lt;/SPAN&gt;&lt;BR /&gt;You should not start by wanting to make a palette for AutoCAD, it's like trying to run before you know how to walk.&lt;BR /&gt;You should start by learning the basics of object-oriented programming with .NET and C # outside AutoCAD and only when you are comfortable with the basics you can start learning the AutoCAD API (you'll get learning material &lt;A href="http://usa.autodesk.com/adsk/servlet/index?siteID=123112&amp;amp;id=1911627" target="_blank"&gt;here&lt;/A&gt; and the documentation &lt;A href="http://help.autodesk.com/view/OARX/2018/ENU/" target="_blank"&gt;here&lt;/A&gt;).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class=""&gt;I attached the corrected 'palet' solution&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Mar 2018 21:45:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843558#M26964</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2018-03-10T21:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843849#M26965</link>
      <description>&lt;PRE&gt;&lt;SPAN&gt;Thank you very much for the valuable information you give&lt;/SPAN&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 11 Mar 2018 05:23:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/7843849#M26965</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-03-11T05:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706738#M26966</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;How to disable the menu bar as image below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="longuyenstrongtie_0-1634908859673.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/980576i37EEBF1A0BDFE150/image-size/medium?v=v2&amp;amp;px=400" role="button" title="longuyenstrongtie_0-1634908859673.png" alt="longuyenstrongtie_0-1634908859673.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 13:22:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706738#M26966</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-22T13:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706888#M26967</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;As far as I know, you cannot. This is part of the PaletteSet.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 14:13:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706888#M26967</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-10-22T14:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706905#M26968</link>
      <description>&lt;P&gt;Can you offer a series of "new Guid" like this?&lt;/P&gt;&lt;PRE&gt;new Guid("63B8DB5B-10E4-4924-B8A2-A9CF9158E4F6")&lt;/PRE&gt;&lt;P&gt;I think it can be done by changing this Guid.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 14:24:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706905#M26968</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-22T14:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706964#M26969</link>
      <description>&lt;P&gt;There are many free GUID generators on the web, you can also use the one provided by Visual Studio (Tools menu &amp;gt; Create GUID).&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 14:46:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10706964#M26969</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-10-22T14:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707204#M26970</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A good practice should be:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Define the commands (PC, Method1, Method2, Method3, Method4 and TEST) decoring them with the CommandMethod attribute so that they work as expected when called from AutoCAD Command line.&lt;/LI&gt;&lt;LI&gt;&lt;FONT color="#FF0000"&gt;Add a UserControl to the project with the buttons and define the Click handler of each button to launch the corresponding command with SendStringToExecute() method.&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;Define a class deriving from PaletteSet to host the UserControl.&lt;/LI&gt;&lt;LI&gt;Define a command to show the palette.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Was reading through this old thread and saw this post by &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/109424"&gt;@_gile&lt;/a&gt;&amp;nbsp;- if only&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/523981"&gt;@TimYarris&lt;/a&gt;&amp;nbsp;&amp;amp; team adhered to Step #2 (invoking Commands from Palettes or Context MenuItem.Click() events, instead of simply calling the underlying Method) we'd be able to fix a lot of issues on our own, by simply Veto()-ing Commands, fixing the issue, then re-invoke same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 16:21:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707204#M26970</guid>
      <dc:creator>BlackBox_</dc:creator>
      <dc:date>2021-10-22T16:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707498#M26971</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want a window floating(modeless) like PalatteSet, but no the frame of the PaletteSet, then why use PaletteSet? You can simply create a winForm/WPF window and show it as modeless dialog/window, whoch you can set the winform/wpf window as borderless (but you surely want provide a way for user to close/hide the form/window, don't you?).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 18:44:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707498#M26971</guid>
      <dc:creator>norman.yuan</dc:creator>
      <dc:date>2021-10-22T18:44:47Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707859#M26972</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Because the PaletteSet is always activate when autoCAD is activate and &lt;SPAN&gt;a winForm/WPF window&lt;/SPAN&gt; is not.&lt;/P&gt;&lt;P&gt;I am looking for 2 solutions:&lt;BR /&gt;1. The PaletteSet without the Menu bar.&lt;BR /&gt;2. Setting&amp;nbsp;&lt;SPAN&gt;winForm/WPF window&lt;/SPAN&gt; always activate with autoCAD .&lt;/P&gt;&lt;P&gt;Currently I am using option 2:&lt;BR /&gt;I've set &lt;SPAN&gt;winForm/WPF window&lt;/SPAN&gt; to always on top, but they're annoying when working with other programs. How to make &lt;SPAN&gt;winForm/WPF window&lt;/SPAN&gt; always active when autoCAD is active?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 23:29:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10707859#M26972</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-10-22T23:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: c# pallete create</title>
      <link>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10708189#M26973</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/543921"&gt;@norman.yuan&lt;/a&gt; already said, you have to show the dialog box as modeless dialog using either:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/OARX/2019/ENU/?guid=OREFNET-__OVERLOADED_ShowModelessDialog_Autodesk_AutoCAD_ApplicationServices_Application" target="_blank" rel="noopener"&gt;Application.ShowModelessDialog&lt;/A&gt; with a WinForms dialog&lt;/P&gt;
&lt;P&gt;or:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://help.autodesk.com/view/OARX/2019/ENU/?guid=OREFNET-__OVERLOADED_ShowModelessWindow_Autodesk_AutoCAD_ApplicationServices_Core_Application" target="_blank" rel="noopener"&gt;Application.ShowModelessWindow&lt;/A&gt; with a WPF dialog.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Oct 2021 06:16:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/net-forum/c-pallete-create/m-p/10708189#M26973</guid>
      <dc:creator>_gile</dc:creator>
      <dc:date>2021-10-23T06:16:56Z</dc:date>
    </item>
  </channel>
</rss>

