@Darryl Hoar , Welcome to Microsoft Q&A, based on the Gist you provided, I reproduced your problem.
The problem is that you instantiated some controls 2 times.
Please remove the following code for only one time in your designer.cs:
this.panel15 = new System.Windows.Forms.Panel();
this.label3 = new System.Windows.Forms.Label();
this.anfcntLab = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.listBox1 = new System.Windows.Forms.ListBox();
After removing these code, Please rebuild your project and you could see the form without the error:
Best Regards,
Jack
If the answer is the right solution, please click "Accept Answer" and upvote it.If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.