From 45a9ce064a8a4665f2846920dfc4b4402b597728 Mon Sep 17 00:00:00 2001
From:
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: name formatter
---
name_formatter/Name Formatter.sln | 25 ++
name_formatter/Name Formatter/App.config | 6 +
name_formatter/Name Formatter/Form1.Designer.cs | 265 +++++++++++++++++++++
name_formatter/Name Formatter/Form1.cs | 75 ++++++
name_formatter/Name Formatter/Form1.resx | 120 ++++++++++
.../Name Formatter/Name Formatter.csproj | 83 +++++++
name_formatter/Name Formatter/Program.cs | 22 ++
.../Name Formatter/Properties/AssemblyInfo.cs | 36 +++
.../Properties/Resources.Designer.cs | 71 ++++++
.../Name Formatter/Properties/Resources.resx | 117 +++++++++
.../Name Formatter/Properties/Settings.Designer.cs | 30 +++
.../Name Formatter/Properties/Settings.settings | 7 +
.../Name Formatter/bin/Debug/Name Formatter.exe | Bin 0 -> 12800 bytes
.../bin/Debug/Name Formatter.exe.config | 6 +
.../Name Formatter/bin/Debug/Name Formatter.pdb | Bin 0 -> 34304 bytes
...TFramework,Version=v4.7.2.AssemblyAttributes.cs | 4 +
.../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 139 bytes
.../DesignTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7192 bytes
.../Name Formatter.csproj.AssemblyReference.cache | Bin 0 -> 6030 bytes
.../Name Formatter.csproj.CoreCompileInputs.cache | 1 +
.../Name Formatter.csproj.FileListAbsolute.txt | 10 +
.../Name Formatter.csproj.GenerateResource.cache | Bin 0 -> 126 bytes
.../Name Formatter/obj/Debug/Name Formatter.exe | Bin 0 -> 12800 bytes
.../Name Formatter/obj/Debug/Name Formatter.pdb | Bin 0 -> 34304 bytes
.../Name_Formatter.Properties.Resources.resources | Bin 0 -> 180 bytes
.../Debug/Name_Formatter.nameFormatter.resources | Bin 0 -> 180 bytes
26 files changed, 878 insertions(+)
create mode 100644 name_formatter/Name Formatter.sln
create mode 100644 name_formatter/Name Formatter/App.config
create mode 100644 name_formatter/Name Formatter/Form1.Designer.cs
create mode 100644 name_formatter/Name Formatter/Form1.cs
create mode 100644 name_formatter/Name Formatter/Form1.resx
create mode 100644 name_formatter/Name Formatter/Name Formatter.csproj
create mode 100644 name_formatter/Name Formatter/Program.cs
create mode 100644 name_formatter/Name Formatter/Properties/AssemblyInfo.cs
create mode 100644 name_formatter/Name Formatter/Properties/Resources.Designer.cs
create mode 100644 name_formatter/Name Formatter/Properties/Resources.resx
create mode 100644 name_formatter/Name Formatter/Properties/Settings.Designer.cs
create mode 100644 name_formatter/Name Formatter/Properties/Settings.settings
create mode 100644 name_formatter/Name Formatter/bin/Debug/Name Formatter.exe
create mode 100644 name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config
create mode 100644 name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb
create mode 100644 name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
create mode 100644 name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache
create mode 100644 name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name Formatter.exe
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources
create mode 100644 name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources
diff --git a/name_formatter/Name Formatter.sln b/name_formatter/Name Formatter.sln
new file mode 100644
index 0000000..3b6a1b5
--- /dev/null
+++ b/name_formatter/Name Formatter.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.7.34009.444
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Name Formatter", "Name Formatter\Name Formatter.csproj", "{96160F08-A8B7-4054-A9E8-98970061291A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {96160F08-A8B7-4054-A9E8-98970061291A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {96160F08-A8B7-4054-A9E8-98970061291A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {96160F08-A8B7-4054-A9E8-98970061291A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {96160F08-A8B7-4054-A9E8-98970061291A}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {19A23A6A-9C3B-44B5-B815-3271F4E9F46F}
+ EndGlobalSection
+EndGlobal
diff --git a/name_formatter/Name Formatter/App.config b/name_formatter/Name Formatter/App.config
new file mode 100644
index 0000000..5754728
--- /dev/null
+++ b/name_formatter/Name Formatter/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/name_formatter/Name Formatter/Form1.Designer.cs b/name_formatter/Name Formatter/Form1.Designer.cs
new file mode 100644
index 0000000..fbc76bf
--- /dev/null
+++ b/name_formatter/Name Formatter/Form1.Designer.cs
@@ -0,0 +1,265 @@
+namespace Name_Formatter
+{
+ partial class nameFormatter
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.instructionLabel = new System.Windows.Forms.Label();
+ this.firstButton = new System.Windows.Forms.Button();
+ this.secondButton = new System.Windows.Forms.Button();
+ this.thirdButton = new System.Windows.Forms.Button();
+ this.forthButton = new System.Windows.Forms.Button();
+ this.fifthButton = new System.Windows.Forms.Button();
+ this.sixthButton = new System.Windows.Forms.Button();
+ this.outputLabel = new System.Windows.Forms.Label();
+ this.exitButton = new System.Windows.Forms.Button();
+ this.clearButton = new System.Windows.Forms.Button();
+ this.titleLabel = new System.Windows.Forms.Label();
+ this.lastNameLabel = new System.Windows.Forms.Label();
+ this.middleNameLabel = new System.Windows.Forms.Label();
+ this.firstNameLabel = new System.Windows.Forms.Label();
+ this.titleTextBox = new System.Windows.Forms.TextBox();
+ this.lastNameTextBox = new System.Windows.Forms.TextBox();
+ this.middleNameTextBox = new System.Windows.Forms.TextBox();
+ this.firstNameTextBox = new System.Windows.Forms.TextBox();
+ this.SuspendLayout();
+ //
+ // instructionLabel
+ //
+ this.instructionLabel.AutoSize = true;
+ this.instructionLabel.Location = new System.Drawing.Point(30, 9);
+ this.instructionLabel.Name = "instructionLabel";
+ this.instructionLabel.Size = new System.Drawing.Size(304, 16);
+ this.instructionLabel.TabIndex = 0;
+ this.instructionLabel.Text = "Fill out the boxes, then click the 1 through 6 buttons.";
+ //
+ // firstButton
+ //
+ this.firstButton.Location = new System.Drawing.Point(70, 166);
+ this.firstButton.Name = "firstButton";
+ this.firstButton.Size = new System.Drawing.Size(38, 28);
+ this.firstButton.TabIndex = 9;
+ this.firstButton.Text = "1";
+ this.firstButton.UseVisualStyleBackColor = true;
+ this.firstButton.Click += new System.EventHandler(this.firstButton_Click);
+ //
+ // secondButton
+ //
+ this.secondButton.Location = new System.Drawing.Point(114, 166);
+ this.secondButton.Name = "secondButton";
+ this.secondButton.Size = new System.Drawing.Size(34, 28);
+ this.secondButton.TabIndex = 10;
+ this.secondButton.Text = "2";
+ this.secondButton.UseVisualStyleBackColor = true;
+ this.secondButton.Click += new System.EventHandler(this.secondButton_Click);
+ //
+ // thirdButton
+ //
+ this.thirdButton.Location = new System.Drawing.Point(154, 166);
+ this.thirdButton.Name = "thirdButton";
+ this.thirdButton.Size = new System.Drawing.Size(37, 28);
+ this.thirdButton.TabIndex = 11;
+ this.thirdButton.Text = "3";
+ this.thirdButton.UseVisualStyleBackColor = true;
+ this.thirdButton.Click += new System.EventHandler(this.thirdButton_Click);
+ //
+ // forthButton
+ //
+ this.forthButton.Location = new System.Drawing.Point(197, 166);
+ this.forthButton.Name = "forthButton";
+ this.forthButton.Size = new System.Drawing.Size(38, 28);
+ this.forthButton.TabIndex = 12;
+ this.forthButton.Text = "4";
+ this.forthButton.UseVisualStyleBackColor = true;
+ this.forthButton.Click += new System.EventHandler(this.forthButton_Click);
+ //
+ // fifthButton
+ //
+ this.fifthButton.Location = new System.Drawing.Point(241, 166);
+ this.fifthButton.Name = "fifthButton";
+ this.fifthButton.Size = new System.Drawing.Size(34, 28);
+ this.fifthButton.TabIndex = 13;
+ this.fifthButton.Text = "5";
+ this.fifthButton.UseVisualStyleBackColor = true;
+ this.fifthButton.Click += new System.EventHandler(this.fifthButton_Click);
+ //
+ // sixthButton
+ //
+ this.sixthButton.Location = new System.Drawing.Point(281, 166);
+ this.sixthButton.Name = "sixthButton";
+ this.sixthButton.Size = new System.Drawing.Size(37, 28);
+ this.sixthButton.TabIndex = 14;
+ this.sixthButton.Text = "6";
+ this.sixthButton.UseVisualStyleBackColor = true;
+ this.sixthButton.Click += new System.EventHandler(this.sixthButton_Click);
+ //
+ // outputLabel
+ //
+ this.outputLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
+ this.outputLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.outputLabel.Location = new System.Drawing.Point(45, 208);
+ this.outputLabel.Name = "outputLabel";
+ this.outputLabel.Size = new System.Drawing.Size(300, 35);
+ this.outputLabel.TabIndex = 15;
+ this.outputLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
+ //
+ // exitButton
+ //
+ this.exitButton.Location = new System.Drawing.Point(196, 256);
+ this.exitButton.Name = "exitButton";
+ this.exitButton.Size = new System.Drawing.Size(75, 34);
+ this.exitButton.TabIndex = 17;
+ this.exitButton.Text = "Exit";
+ this.exitButton.UseVisualStyleBackColor = true;
+ this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
+ //
+ // clearButton
+ //
+ this.clearButton.Location = new System.Drawing.Point(106, 256);
+ this.clearButton.Name = "clearButton";
+ this.clearButton.Size = new System.Drawing.Size(75, 34);
+ this.clearButton.TabIndex = 16;
+ this.clearButton.Text = "Clear";
+ this.clearButton.UseVisualStyleBackColor = true;
+ this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
+ //
+ // titleLabel
+ //
+ this.titleLabel.AutoSize = true;
+ this.titleLabel.Location = new System.Drawing.Point(57, 48);
+ this.titleLabel.Name = "titleLabel";
+ this.titleLabel.Size = new System.Drawing.Size(151, 16);
+ this.titleLabel.TabIndex = 1;
+ this.titleLabel.Text = "Enter your preferred title:";
+ //
+ // lastNameLabel
+ //
+ this.lastNameLabel.AutoSize = true;
+ this.lastNameLabel.Location = new System.Drawing.Point(77, 129);
+ this.lastNameLabel.Name = "lastNameLabel";
+ this.lastNameLabel.Size = new System.Drawing.Size(131, 16);
+ this.lastNameLabel.TabIndex = 7;
+ this.lastNameLabel.Text = "Enter your last name:";
+ //
+ // middleNameLabel
+ //
+ this.middleNameLabel.AutoSize = true;
+ this.middleNameLabel.Location = new System.Drawing.Point(57, 101);
+ this.middleNameLabel.Name = "middleNameLabel";
+ this.middleNameLabel.Size = new System.Drawing.Size(151, 16);
+ this.middleNameLabel.TabIndex = 5;
+ this.middleNameLabel.Text = "Enter your middle name:";
+ //
+ // firstNameLabel
+ //
+ this.firstNameLabel.AutoSize = true;
+ this.firstNameLabel.Location = new System.Drawing.Point(78, 76);
+ this.firstNameLabel.Name = "firstNameLabel";
+ this.firstNameLabel.Size = new System.Drawing.Size(130, 16);
+ this.firstNameLabel.TabIndex = 3;
+ this.firstNameLabel.Text = "Enter your first name:";
+ //
+ // titleTextBox
+ //
+ this.titleTextBox.Location = new System.Drawing.Point(223, 45);
+ this.titleTextBox.Name = "titleTextBox";
+ this.titleTextBox.Size = new System.Drawing.Size(100, 22);
+ this.titleTextBox.TabIndex = 2;
+ //
+ // lastNameTextBox
+ //
+ this.lastNameTextBox.Location = new System.Drawing.Point(223, 129);
+ this.lastNameTextBox.Name = "lastNameTextBox";
+ this.lastNameTextBox.Size = new System.Drawing.Size(100, 22);
+ this.lastNameTextBox.TabIndex = 8;
+ //
+ // middleNameTextBox
+ //
+ this.middleNameTextBox.Location = new System.Drawing.Point(223, 101);
+ this.middleNameTextBox.Name = "middleNameTextBox";
+ this.middleNameTextBox.Size = new System.Drawing.Size(100, 22);
+ this.middleNameTextBox.TabIndex = 6;
+ //
+ // firstNameTextBox
+ //
+ this.firstNameTextBox.Location = new System.Drawing.Point(223, 73);
+ this.firstNameTextBox.Name = "firstNameTextBox";
+ this.firstNameTextBox.Size = new System.Drawing.Size(100, 22);
+ this.firstNameTextBox.TabIndex = 4;
+ //
+ // nameFormatter
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(382, 303);
+ this.Controls.Add(this.titleLabel);
+ this.Controls.Add(this.lastNameLabel);
+ this.Controls.Add(this.middleNameLabel);
+ this.Controls.Add(this.firstNameLabel);
+ this.Controls.Add(this.titleTextBox);
+ this.Controls.Add(this.lastNameTextBox);
+ this.Controls.Add(this.middleNameTextBox);
+ this.Controls.Add(this.firstNameTextBox);
+ this.Controls.Add(this.clearButton);
+ this.Controls.Add(this.exitButton);
+ this.Controls.Add(this.outputLabel);
+ this.Controls.Add(this.sixthButton);
+ this.Controls.Add(this.fifthButton);
+ this.Controls.Add(this.forthButton);
+ this.Controls.Add(this.thirdButton);
+ this.Controls.Add(this.secondButton);
+ this.Controls.Add(this.firstButton);
+ this.Controls.Add(this.instructionLabel);
+ this.Name = "nameFormatter";
+ this.Text = "Name Formatter";
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+ private System.Windows.Forms.Label instructionLabel;
+ private System.Windows.Forms.Button firstButton;
+ private System.Windows.Forms.Button secondButton;
+ private System.Windows.Forms.Button thirdButton;
+ private System.Windows.Forms.Button forthButton;
+ private System.Windows.Forms.Button fifthButton;
+ private System.Windows.Forms.Button sixthButton;
+ private System.Windows.Forms.Label outputLabel;
+ private System.Windows.Forms.Button exitButton;
+ private System.Windows.Forms.Button clearButton;
+ private System.Windows.Forms.Label titleLabel;
+ private System.Windows.Forms.Label lastNameLabel;
+ private System.Windows.Forms.Label middleNameLabel;
+ private System.Windows.Forms.Label firstNameLabel;
+ private System.Windows.Forms.TextBox titleTextBox;
+ private System.Windows.Forms.TextBox lastNameTextBox;
+ private System.Windows.Forms.TextBox middleNameTextBox;
+ private System.Windows.Forms.TextBox firstNameTextBox;
+ }
+}
+
diff --git a/name_formatter/Name Formatter/Form1.cs b/name_formatter/Name Formatter/Form1.cs
new file mode 100644
index 0000000..737b4b8
--- /dev/null
+++ b/name_formatter/Name Formatter/Form1.cs
@@ -0,0 +1,75 @@
+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;
+
+namespace Name_Formatter
+{
+ public partial class nameFormatter : Form
+ {
+ public nameFormatter()
+ {
+ InitializeComponent();
+ }
+
+ private void firstButton_Click(object sender, EventArgs e)
+ {
+ outputLabel.Text = titleTextBox.Text + " " +
+ firstNameTextBox.Text + " " +
+ middleNameTextBox.Text + " " +
+ lastNameTextBox.Text;
+ }
+
+ private void secondButton_Click(object sender, EventArgs e)
+ {
+ outputLabel.Text = firstNameTextBox.Text + " " +
+ middleNameTextBox.Text + " " +
+ lastNameTextBox.Text;
+ }
+
+ private void thirdButton_Click(object sender, EventArgs e)
+ {
+ outputLabel.Text = firstNameTextBox.Text + " " +
+ lastNameTextBox.Text;
+ }
+
+ private void forthButton_Click(object sender, EventArgs e)
+ {
+ outputLabel.Text = lastNameTextBox.Text + ", " +
+ firstNameTextBox.Text + " " +
+ middleNameTextBox.Text + ", " +
+ titleTextBox.Text;
+ }
+
+ private void fifthButton_Click(object sender, EventArgs e)
+ {
+ outputLabel.Text = lastNameTextBox.Text + ", " +
+ firstNameTextBox.Text + " " +
+ middleNameTextBox.Text;
+ }
+
+ private void sixthButton_Click(object sender, EventArgs e)
+ {
+ outputLabel.Text = lastNameTextBox.Text + ", " +
+ firstNameTextBox.Text;
+ }
+
+ private void clearButton_Click(object sender, EventArgs e)
+ {
+ titleTextBox.Text = "";
+ firstNameTextBox.Text = "";
+ middleNameTextBox.Text = "";
+ lastNameTextBox.Text = "";
+ outputLabel.Text = "";
+ }
+ private void exitButton_Click(object sender, EventArgs e)
+ {
+ this.Close();
+ }
+ }
+}
diff --git a/name_formatter/Name Formatter/Form1.resx b/name_formatter/Name Formatter/Form1.resx
new file mode 100644
index 0000000..29dcb1b
--- /dev/null
+++ b/name_formatter/Name Formatter/Form1.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/name_formatter/Name Formatter/Name Formatter.csproj b/name_formatter/Name Formatter/Name Formatter.csproj
new file mode 100644
index 0000000..16bed3b
--- /dev/null
+++ b/name_formatter/Name Formatter/Name Formatter.csproj
@@ -0,0 +1,83 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {96160F08-A8B7-4054-A9E8-98970061291A}
+ WinExe
+ Name_Formatter
+ Name Formatter
+ v4.7.2
+ 512
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Form
+
+
+ Form1.cs
+
+
+
+
+ Form1.cs
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+ Designer
+
+
+ True
+ Resources.resx
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+ True
+ Settings.settings
+ True
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/name_formatter/Name Formatter/Program.cs b/name_formatter/Name Formatter/Program.cs
new file mode 100644
index 0000000..536359f
--- /dev/null
+++ b/name_formatter/Name Formatter/Program.cs
@@ -0,0 +1,22 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace Name_Formatter
+{
+ internal static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ Application.EnableVisualStyles();
+ Application.SetCompatibleTextRenderingDefault(false);
+ Application.Run(new nameFormatter());
+ }
+ }
+}
diff --git a/name_formatter/Name Formatter/Properties/AssemblyInfo.cs b/name_formatter/Name Formatter/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..792faa6
--- /dev/null
+++ b/name_formatter/Name Formatter/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Name Formatter")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Name Formatter")]
+[assembly: AssemblyCopyright("Copyright © 2023")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed to COM
+[assembly: Guid("96160f08-a8b7-4054-a9e8-98970061291a")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Build and Revision Numbers
+// by using the '*' as shown below:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/name_formatter/Name Formatter/Properties/Resources.Designer.cs b/name_formatter/Name Formatter/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..0b9a67f
--- /dev/null
+++ b/name_formatter/Name Formatter/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Name_Formatter.Properties
+{
+
+
+ ///
+ /// A strongly-typed resource class, for looking up localized strings, etc.
+ ///
+ // This class was auto-generated by the StronglyTypedResourceBuilder
+ // class via a tool like ResGen or Visual Studio.
+ // To add or remove a member, edit your .ResX file then rerun ResGen
+ // with the /str option, or rebuild your VS project.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Returns the cached ResourceManager instance used by this class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Name_Formatter.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Overrides the current thread's CurrentUICulture property for all
+ /// resource lookups using this strongly typed resource class.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/name_formatter/Name Formatter/Properties/Resources.resx b/name_formatter/Name Formatter/Properties/Resources.resx
new file mode 100644
index 0000000..ffecec8
--- /dev/null
+++ b/name_formatter/Name Formatter/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/name_formatter/Name Formatter/Properties/Settings.Designer.cs b/name_formatter/Name Formatter/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..1e9d927
--- /dev/null
+++ b/name_formatter/Name Formatter/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Name_Formatter.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/name_formatter/Name Formatter/Properties/Settings.settings b/name_formatter/Name Formatter/Properties/Settings.settings
new file mode 100644
index 0000000..abf36c5
--- /dev/null
+++ b/name_formatter/Name Formatter/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe
new file mode 100644
index 0000000..6f3c073
Binary files /dev/null and b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe differ
diff --git a/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config
new file mode 100644
index 0000000..5754728
--- /dev/null
+++ b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb b/name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb
new file mode 100644
index 0000000..add9cce
Binary files /dev/null and b/name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb differ
diff --git a/name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
new file mode 100644
index 0000000..057ed7f
--- /dev/null
+++ b/name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
diff --git a/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..10a1a65
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..0313c7b
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..25ff1ca
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache differ
diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..bfe380c
--- /dev/null
+++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+8069502011d0681850e57a53d5a1673222f430a6
diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..7fa4c45
--- /dev/null
+++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt
@@ -0,0 +1,10 @@
+C:\Users\User\source\repos\Name Formatter\Name Formatter\bin\Debug\Name Formatter.exe.config
+C:\Users\User\source\repos\Name Formatter\Name Formatter\bin\Debug\Name Formatter.exe
+C:\Users\User\source\repos\Name Formatter\Name Formatter\bin\Debug\Name Formatter.pdb
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.csproj.AssemblyReference.cache
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name_Formatter.nameFormatter.resources
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name_Formatter.Properties.Resources.resources
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.csproj.GenerateResource.cache
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.csproj.CoreCompileInputs.cache
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.exe
+C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.pdb
diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache
new file mode 100644
index 0000000..ce60986
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache differ
diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.exe b/name_formatter/Name Formatter/obj/Debug/Name Formatter.exe
new file mode 100644
index 0000000..6f3c073
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/Name Formatter.exe differ
diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb b/name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb
new file mode 100644
index 0000000..add9cce
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb differ
diff --git a/name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources differ
diff --git a/name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources differ
--
cgit 1.4.1