<?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# Addin form, Reset the form when show in Revit API Forum</title>
    <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458130#M35072</link>
    <description>&lt;P&gt;Yes that's the Form Class, but nowhere it's instanced!.&lt;/P&gt;&lt;P&gt;How do you set the variable "boite"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Michel&lt;/P&gt;</description>
    <pubDate>Tue, 21 Apr 2020 07:15:40 GMT</pubDate>
    <dc:creator>TripleM-Dev.net</dc:creator>
    <dc:date>2020-04-21T07:15:40Z</dc:date>
    <item>
      <title>C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9447060#M35064</link>
      <description>&lt;P&gt;Hi, recently i created a new add-in for my Revit.&lt;/P&gt;&lt;P&gt;I followed the Autodesk tutorial to make it (Create class in virtual studio etc..)&lt;/P&gt;&lt;P&gt;My program have to show a Form like the first screenshot.&lt;/P&gt;&lt;P&gt;As we can see, the Form is blank and it's totally normal. But, when i close it and open it again, it conserve previous information (screenshot 2) while i wrote this in virtual studio :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;comboBox1.Items.Clear();&lt;BR /&gt;comboBox2.Items.Clear();&lt;BR /&gt;comboBox3.Items.Clear();&lt;BR /&gt;listBox1.Items.Clear();&lt;BR /&gt;comboBox1.ResetText();&lt;BR /&gt;comboBox2.ResetText();&lt;BR /&gt;comboBox3.ResetText();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can see the context in screenshot 3.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 1" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/755050i811715AB2BF6350E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen01.png" alt="Screenshot 1" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Screenshot 1&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 2" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/755052iB993948BF8BC5E8B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen02.png" alt="Screenshot 2" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Screenshot 2&lt;/span&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Screenshot 3" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/755051iA6613E77C094440B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen03.png" alt="Screenshot 3" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Screenshot 3&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 09:00:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9447060#M35064</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-16T09:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9447293#M35065</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are you re-using the form instance variable?, how do you call and create the form itself.&lt;/P&gt;&lt;P&gt;The initializer is only called if the form is created, put the "Resets" in the Form Shown event.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Michel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 10:23:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9447293#M35065</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-04-16T10:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9447444#M35066</link>
      <description>&lt;P&gt;I basically use this tutorial (&lt;A href="https://knowledge.autodesk.com/support/revit-products/learn-explore/caas/simplecontent/content/lesson-1-the-basic-plug.html" target="_blank"&gt;https://knowledge.autodesk.com/support/revit-products/learn-explore/caas/simplecontent/content/lesson-1-the-basic-plug.html&lt;/A&gt;) but removed all the example code and, inside the Class in Virtual studio, i create Form that is called by this function :&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;And then, i can use my form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#999999"&gt;&lt;EM&gt;"The initializer is only called if the form is created, put the "Resets" in the Form Shown event."&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;That what i exactly want to do but don't know how.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2020 11:40:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9447444#M35066</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-16T11:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9455469#M35067</link>
      <description>&lt;P&gt;Dear Thomas,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your query.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you display your form using ShowDialog, it becomes a modal form and you should have no problems whatsoever.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you instead display your form using Show, it becomes a modeless form and things get more complicated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jeremy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 09:22:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9455469#M35067</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-04-20T09:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9456441#M35068</link>
      <description>&lt;P&gt;Thank for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I already use ShowDialog when I start my plug-in as you can see.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)

        {

            //Get application and documnet objects

            UIApplication uiapp = commandData.Application;

            Document doc = uiapp.ActiveUIDocument.Document;

            application = commandData.Application;
            document = application.ActiveUIDocument.Document;
            uiDocument = application.ActiveUIDocument;
                        
			boite.ShowDialog();
            


			return Result.Succeeded;

        }&lt;/LI-CODE&gt;&lt;P&gt;When i click the first time on Addins &amp;gt; External Tools &amp;gt; MyPluginName the Form start correctly and my variables are correctly clean (logic) but when I close it with the red cross and start it again (same method) it memorized all files path and my choices.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried different way to put my initializing code but none of them work.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 14:45:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9456441#M35068</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-20T14:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9456469#M35069</link>
      <description>&lt;P&gt;Yes and where does the object "boite" come from, where do you initialize&amp;nbsp;"boite"?&lt;/P&gt;&lt;P&gt;If it's never released, the object will be reused.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Otherwise call in the form's onshown event to reset the values.&lt;/P&gt;&lt;P&gt;&lt;A title="Form.Shown Event" href="https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.form.shown?view=netframework-4.8" target="_blank" rel="noopener"&gt;Form.Shown Event&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Michel&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 14:54:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9456469#M35069</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-04-20T14:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9457959#M35070</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is the code how is generated by virtual studio for a Form&lt;/P&gt;&lt;P&gt;In "MyFormName.cs" we have :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace Import_Selected_DET
{
    public partial class Interface_LIB : Form
    {
        //My Var
        public Interface_LIB()
        {
            InitializeComponent();

            
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In "MyFormName.Designer.cs" we have :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;namespace Import_Selected_DET
{
    partial class Interface_LIB
    {
        /// &amp;lt;summary&amp;gt;
        /// Required designer variable.
        /// &amp;lt;/summary&amp;gt;
        private System.ComponentModel.IContainer components = null;

        /// &amp;lt;summary&amp;gt;
        /// Clean up any resources being used.
        /// &amp;lt;/summary&amp;gt;
        /// &amp;lt;param name="disposing"&amp;gt;true if managed resources should be disposed; otherwise, false.&amp;lt;/param&amp;gt;
        protected override void Dispose(bool disposing)
        {
            if (disposing &amp;amp;&amp;amp; (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// &amp;lt;summary&amp;gt;
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// &amp;lt;/summary&amp;gt;
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Interface_LIB));
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.ListeFAB = new System.Windows.Forms.ComboBox();
            this.ListeGAM = new System.Windows.Forms.ComboBox();
            this.ListeREP = new System.Windows.Forms.ComboBox();
            this.ListDET = new System.Windows.Forms.ListBox();
            this.btnImport = new System.Windows.Forms.Button();
            this.btnBiblio = new System.Windows.Forms.Button();
            this.btnClose = new System.Windows.Forms.Button();
            this.btnImportPlace = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.txtRecherche = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.btnStart = new System.Windows.Forms.Button();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Century", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.Location = new System.Drawing.Point(6, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(185, 23);
            this.label1.TabIndex = 0;
            this.label1.Text = "Choix du fabricant :";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Century", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.Location = new System.Drawing.Point(6, 121);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(190, 23);
            this.label2.TabIndex = 1;
            this.label2.Text = "Choix de la gamme :";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Century", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.Location = new System.Drawing.Point(6, 230);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(193, 23);
            this.label3.TabIndex = 2;
            this.label3.Text = "Choix du répertoire :";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Century", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.Location = new System.Drawing.Point(282, 16);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(267, 23);
            this.label4.TabIndex = 3;
            this.label4.Text = "Choix de l\'élément de détail :";
            // 
            // ListeFAB
            // 
            this.ListeFAB.Font = new System.Drawing.Font("Century", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ListeFAB.FormattingEnabled = true;
            this.ListeFAB.Location = new System.Drawing.Point(5, 51);
            this.ListeFAB.Name = "ListeFAB";
            this.ListeFAB.Size = new System.Drawing.Size(186, 23);
            this.ListeFAB.TabIndex = 4;
            this.ListeFAB.SelectedIndexChanged += new System.EventHandler(this.ListeFAB_SelectedIndexChanged);
            // 
            // ListeGAM
            // 
            this.ListeGAM.Font = new System.Drawing.Font("Century", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ListeGAM.FormattingEnabled = true;
            this.ListeGAM.Location = new System.Drawing.Point(6, 156);
            this.ListeGAM.Name = "ListeGAM";
            this.ListeGAM.Size = new System.Drawing.Size(186, 23);
            this.ListeGAM.TabIndex = 5;
            this.ListeGAM.SelectedIndexChanged += new System.EventHandler(this.ListeGAM_SelectedIndexChanged);
            // 
            // ListeREP
            // 
            this.ListeREP.Font = new System.Drawing.Font("Century", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.ListeREP.FormattingEnabled = true;
            this.ListeREP.Location = new System.Drawing.Point(5, 265);
            this.ListeREP.Name = "ListeREP";
            this.ListeREP.Size = new System.Drawing.Size(186, 23);
            this.ListeREP.TabIndex = 6;
            this.ListeREP.SelectedIndexChanged += new System.EventHandler(this.ListeREP_SelectedIndexChanged);
            // 
            // ListDET
            // 
            this.ListDET.FormattingEnabled = true;
            this.ListDET.Location = new System.Drawing.Point(286, 81);
            this.ListDET.Name = "ListDET";
            this.ListDET.Size = new System.Drawing.Size(397, 433);
            this.ListDET.TabIndex = 7;
            this.ListDET.SelectedIndexChanged += new System.EventHandler(this.ListDET_SelectedIndexChanged);
            // 
            // btnImport
            // 
            this.btnImport.BackColor = System.Drawing.SystemColors.InactiveCaption;
            this.btnImport.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnImport.ForeColor = System.Drawing.SystemColors.HotTrack;
            this.btnImport.Location = new System.Drawing.Point(6, 420);
            this.btnImport.Name = "btnImport";
            this.btnImport.Size = new System.Drawing.Size(186, 44);
            this.btnImport.TabIndex = 8;
            this.btnImport.Text = "Importer";
            this.btnImport.UseVisualStyleBackColor = false;
            this.btnImport.Click += new System.EventHandler(this.btnImport_Click);
            // 
            // btnBiblio
            // 
            this.btnBiblio.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.btnBiblio.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnBiblio.ForeColor = System.Drawing.SystemColors.HotTrack;
            this.btnBiblio.Location = new System.Drawing.Point(218, 12);
            this.btnBiblio.Name = "btnBiblio";
            this.btnBiblio.Size = new System.Drawing.Size(279, 23);
            this.btnBiblio.TabIndex = 9;
            this.btnBiblio.Text = "Changer emplacement bibliothèque";
            this.btnBiblio.UseVisualStyleBackColor = false;
            this.btnBiblio.Click += new System.EventHandler(this.btnBiblio_Click);
            // 
            // btnClose
            // 
            this.btnClose.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnClose.Font = new System.Drawing.Font("Century", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnClose.ForeColor = System.Drawing.Color.Red;
            this.btnClose.Location = new System.Drawing.Point(503, 12);
            this.btnClose.Name = "btnClose";
            this.btnClose.Size = new System.Drawing.Size(200, 23);
            this.btnClose.TabIndex = 11;
            this.btnClose.Text = "Close Plug-in";
            this.btnClose.UseVisualStyleBackColor = false;
            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
            // 
            // btnImportPlace
            // 
            this.btnImportPlace.BackColor = System.Drawing.SystemColors.InactiveCaption;
            this.btnImportPlace.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnImportPlace.ForeColor = System.Drawing.SystemColors.HotTrack;
            this.btnImportPlace.Location = new System.Drawing.Point(6, 470);
            this.btnImportPlace.Name = "btnImportPlace";
            this.btnImportPlace.Size = new System.Drawing.Size(186, 44);
            this.btnImportPlace.TabIndex = 12;
            this.btnImportPlace.Text = "Importer et placer";
            this.btnImportPlace.UseVisualStyleBackColor = false;
            this.btnImportPlace.Click += new System.EventHandler(this.btnImportPlace_Click);
            // 
            // groupBox1
            // 
            this.groupBox1.BackColor = System.Drawing.SystemColors.Control;
            this.groupBox1.Controls.Add(this.label5);
            this.groupBox1.Controls.Add(this.txtRecherche);
            this.groupBox1.Controls.Add(this.btnImportPlace);
            this.groupBox1.Controls.Add(this.ListDET);
            this.groupBox1.Controls.Add(this.label4);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.btnImport);
            this.groupBox1.Controls.Add(this.label3);
            this.groupBox1.Controls.Add(this.ListeREP);
            this.groupBox1.Controls.Add(this.ListeFAB);
            this.groupBox1.Controls.Add(this.ListeGAM);
            this.groupBox1.Location = new System.Drawing.Point(12, 52);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(689, 529);
            this.groupBox1.TabIndex = 13;
            this.groupBox1.TabStop = false;
            // 
            // txtRecherche
            // 
            this.txtRecherche.Location = new System.Drawing.Point(357, 49);
            this.txtRecherche.Name = "txtRecherche";
            this.txtRecherche.Size = new System.Drawing.Size(326, 20);
            this.txtRecherche.TabIndex = 13;
            this.txtRecherche.TextChanged += new System.EventHandler(this.txtRecherche_TextChanged);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Century", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.Location = new System.Drawing.Point(283, 51);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(68, 15);
            this.label5.TabIndex = 14;
            this.label5.Text = "Recherche :";
            // 
            // btnStart
            // 
            this.btnStart.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
            this.btnStart.Font = new System.Drawing.Font("Century", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.btnStart.ForeColor = System.Drawing.Color.Green;
            this.btnStart.Location = new System.Drawing.Point(12, 12);
            this.btnStart.Name = "btnStart";
            this.btnStart.Size = new System.Drawing.Size(200, 23);
            this.btnStart.TabIndex = 14;
            this.btnStart.Text = "Start Plug-in";
            this.btnStart.UseVisualStyleBackColor = false;
            this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
            // 
            // Interface_LIB
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(715, 593);
            this.Controls.Add(this.btnStart);
            this.Controls.Add(this.btnClose);
            this.Controls.Add(this.btnBiblio);
            this.Controls.Add(this.groupBox1);
            this.Cursor = System.Windows.Forms.Cursors.Default;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name = "Interface_LIB";
            this.Text = "Let it BIM - Selection d\'éléments de détail";
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.ComboBox ListeFAB;
        private System.Windows.Forms.ComboBox ListeGAM;
        private System.Windows.Forms.ComboBox ListeREP;
        private System.Windows.Forms.ListBox ListDET;
        private System.Windows.Forms.Button btnImport;
        private System.Windows.Forms.Button btnBiblio;
        private System.Windows.Forms.Button btnClose;
        private System.Windows.Forms.Button btnImportPlace;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.TextBox txtRecherche;
        private System.Windows.Forms.Button btnStart;
    }
}&lt;/LI-CODE&gt;&lt;P&gt;And then, you already see the code to start Addin.&lt;/P&gt;&lt;P&gt;For more information, My Form is called "Interface_LIB" and the Program in virtual studio is "Import_Selected_DET".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 06:07:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9457959#M35070</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T06:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458115#M35071</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Thomas,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I do not see any of the Revit API calls that I presume you are using to populate your form data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Where are they?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I would suggest that you take a look at an existing, working Windows form and examine how it interacts with and is populated by the Revit API calls that it interacts with.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There are sooo many beautiful working examples out there.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Start from a minimal working example and add your own code to that.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Here is my favourite implementation that shows how you can cleanly separate the Windows API from the Revit API stuff:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/2012/05/the-schedule-api-and-access-to-schedule-data.html" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/2012/05/the-schedule-api-and-access-to-schedule-data.html&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 07:12:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458115#M35071</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-04-21T07:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458130#M35072</link>
      <description>&lt;P&gt;Yes that's the Form Class, but nowhere it's instanced!.&lt;/P&gt;&lt;P&gt;How do you set the variable "boite"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Michel&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 07:15:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458130#M35072</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-04-21T07:15:40Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458189#M35073</link>
      <description>&lt;P&gt;Hi, this is the full code in my Class&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Autodesk.Revit.ApplicationServices;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using Autodesk.Revit.UI.Selection;
using System.IO;
using Autodesk.Revit.DB.Events;

namespace Import_Selected_DET

{

    [Transaction(TransactionMode.Manual)]

    [Regeneration(RegenerationOption.Manual)]

    public class Class_Import_Selected_DET : IExternalCommand

    {
        public static Document document;
        public static Interface_LIB boite = new Interface_LIB();
        public static UIApplication application;
        public static UIDocument uiDocument;

        public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)

        {

            //Get application and documnet objects

            UIApplication uiapp = commandData.Application;

            Document doc = uiapp.ActiveUIDocument.Document;

            application = commandData.Application;
            document = application.ActiveUIDocument.Document;
            uiDocument = application.ActiveUIDocument;
                        
			boite.ShowDialog();
            


			return Result.Succeeded;

        }

        public static void InsererFamille(string chemin)
        {
            
            using (Transaction tr = new Transaction(document, "Importer la famille"))
            {

                tr.Start();
                document.LoadFamily(chemin);
                tr.Commit();

                if (tr.HasEnded()) { TaskDialog.Show("titre", "Transaction finie"); }
            }

        }

        public static void PlacerFamille(string nomFamille)
        {
                        
            
            FilteredElementCollector familyCollector = new FilteredElementCollector(document);
            familyCollector.OfClass(typeof(FamilySymbol));
            FamilySymbol familySymbolToFind = null;
            

            foreach (FamilySymbol familySymbol in familyCollector)
            {
                //To search by FamilySymbol name
                //TaskDialog.Show("Revit", familySymbol.Name.ToString());
                if (familySymbol.Name == nomFamille) 
                {
                    familySymbolToFind = familySymbol;
                    TaskDialog.Show("Revit", familySymbol.Family.Name.ToString());
                } 
                //To search by Family name
                else if (familySymbol.Family.Name == nomFamille) 
                {
                    familySymbolToFind = familySymbol;
                    TaskDialog.Show("Revit", familySymbol.Family.Name.ToString());
                }

            }

            

            try
            {
                uiDocument.PromptForFamilyInstancePlacement(familySymbolToFind);
            }
            catch { TaskDialog.Show("titre", "Erreur de placement"); }
            

            
        }

        public static List&amp;lt;string&amp;gt; RFAFilter (string chemin,bool retournechemin)
        {
            List&amp;lt;string&amp;gt; fichiers = new List&amp;lt;string&amp;gt;();
            DirectoryInfo dir = new DirectoryInfo(chemin);
            FileInfo[] fichier = dir.GetFiles();

            if (fichier.Length == 0) { return fichiers; }
            else
            {
                foreach(FileInfo file in fichier)
                {
                    if(retournechemin)
                    {
                        string nomFile = file.FullName;
                        bool contient = nomFile.Contains(".rfa");
                        if (contient)
                        {
                            fichiers.Add(nomFile);
                        }
                    }
                    else
                    {
                        string nomFile = file.Name;
                        bool contient = nomFile.Contains(".rfa");
                        if (contient)
                        {
                            fichiers.Add(nomFile);
                        }
                    }
                    
                }
                return fichiers;
            }

        }
        


    }

}&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 21 Apr 2020 07:43:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458189#M35073</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T07:43:59Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458196#M35074</link>
      <description>&lt;P&gt;By the way,&lt;/P&gt;&lt;P&gt;my uiDocument.PromptForFamilyInstancePlacement(familySymbolToFind) doesn't work too.&lt;/P&gt;&lt;P&gt;but it's an other subject ..&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 07:49:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458196#M35074</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T07:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458283#M35075</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Thomas,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I see you raised the same question on StackOverflow too:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://stackoverflow.com/questions/61318675/revit-addin-reset-all-values-of-forms-when-start" target="_blank"&gt;https://stackoverflow.com/questions/61318675/revit-addin-reset-all-values-of-forms-when-start&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Adrian answered you there, saying, &lt;EM&gt;Are you closing the window or just hiding it? Make sure that you destroy the window object when you close it – Adrian Efford 23 hours ago&lt;/EM&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Just as he says, if you destroy the window all its data will disappear.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;When you recreate it, you have to add new data.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 08:36:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458283#M35075</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-04-21T08:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458284#M35076</link>
      <description>&lt;P&gt;First i would put the instancing of "boite" in the execute method, like with document.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public static Interface_LIB boite = new Interface_LIB();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;change to:&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public static Interface_LIB boite;

// and in execute:
boite = new Interface_LIB();&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then?? How is "InsererFamille" or "PlacerFamille" called?&lt;/P&gt;&lt;P&gt;The form ends after "boite.ShowDialog();" and I see no event caller for the methods above.&lt;/P&gt;&lt;P&gt;So is right the form only shows and that's it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ps. Would maybe even place Form in Using block.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Michel&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 08:36:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458284#M35076</guid>
      <dc:creator>TripleM-Dev.net</dc:creator>
      <dc:date>2020-04-21T08:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458412#M35077</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;To reply jeremytammik&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank, I hadn't seen it, of course i can destroy the Window but, the form doesn't do it itself when you click on the red cross ?&lt;/P&gt;&lt;P&gt;I mean, When user click on it, why the form is not destroy ? And where have I to put the destruction of the Form for that execute with a red cross click.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To reply you TripleM-Dev&lt;/P&gt;&lt;P&gt;I use there's function in code in Form. But i don't show it because it's not necessary.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No, the form show and then, i use button, listBox etc..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 09:29:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458412#M35077</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T09:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458837#M35078</link>
      <description>&lt;P&gt;@AnonymousThis is how I do it with using statement (see image). But you can also look at some examples like SDK sample: AllViews.&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot" style="width: 727px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/757863iFC6A86F90A0FA90D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.JPG" alt="Screenshot" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Screenshot&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 11:53:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9458837#M35078</guid>
      <dc:creator>corinne.astori</dc:creator>
      <dc:date>2020-04-21T11:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9459022#M35079</link>
      <description>&lt;P&gt;That's where my knowledge stop, i don't understand what you done.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And I don't know what is SDK sample.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 12:52:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9459022#M35079</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T12:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9459322#M35080</link>
      <description>&lt;P&gt;Ok. I find a solution !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I create a new definition that is called "DestructionMassive". I put all the code i use to reset my form in it.&lt;/P&gt;&lt;P&gt;Like this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;public MyFormName (Autodesk.Revit.UI.ExternalCommandData commandData)
        {
            InitializeComponent();

        }

public void DestructionMassiveRevit()
        {
            //my code
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I go to MyClassName.cs (in public class MyClassName : IExternalCommand) and made this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;//set my var
public static MyFormName boite = new MyFormName(null);


public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)

        {

            //Get application and documnet objects

            UIApplication uiapp = commandData.Application;

            Document doc = uiapp.ActiveUIDocument.Document;

            application = commandData.Application;
            document = application.ActiveUIDocument.Document;
            uiDocument = application.ActiveUIDocument;

            
            boite.DestructionMassive();
            boite.ShowDialog();
       }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i start my Addin, it automatically reset all my control and then, it show the form.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5513334"&gt;@corinne.astori&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3633270"&gt;@TripleM-Dev.net&lt;/a&gt;&amp;nbsp; &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/413917"&gt;@jeremytammik&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 14:33:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9459322#M35080</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-21T14:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9459436#M35081</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Dear Thomas,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Congratulations on solving it!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;However, if you do not know what I mean by Revit SDK sample, please do nothing else for now until you have &lt;U&gt;worked through the getting started material&lt;/U&gt; and installed both the &lt;U&gt;Revit SDK&lt;/U&gt; and &lt;U&gt;RevitLookup&lt;/U&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://thebuildingcoder.typepad.com/blog/about-the-author.html#2" target="_blank"&gt;https://thebuildingcoder.typepad.com/blog/about-the-author.html#2&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;That will save both you and the rest of the universe a ton of head-scratching trying to answer questions that have already been answered hundreds of times over in the past.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2020 15:05:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9459436#M35081</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-04-21T15:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9461863#M35082</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/413917"&gt;@jeremytammik&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank for information, I read it and don't understand who to install many of the stuff you describe.&lt;/P&gt;&lt;P&gt;Maybe we can continue our discussion on linkedIn or maybe not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank. Thomas Lecuppre&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 11:30:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9461863#M35082</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-22T11:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: C# Addin form, Reset the form when show</title>
      <link>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9462029#M35083</link>
      <description>&lt;P&gt;Dear Thomas,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The installation of all the "stuff" has been described&amp;nbsp;&lt;SPAN&gt;dozens of times in the past by The Building Coder.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I cannot describe it any better for you than I already have for the community in general.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;My job is done. I have described. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Your job is to read and learn and understand. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Good luck and have fun completing your part of the contract!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Jeremy&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Apr 2020 12:33:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/revit-api-forum/c-addin-form-reset-the-form-when-show/m-p/9462029#M35083</guid>
      <dc:creator>jeremytammik</dc:creator>
      <dc:date>2020-04-22T12:33:38Z</dc:date>
    </item>
  </channel>
</rss>

