commit c401da86624e44e950e04a97945761486e9c2c93 Author: Caleb Fontenot Date: Mon Oct 3 14:52:05 2022 -0500 Init diff --git a/BaseConverter.sln b/BaseConverter.sln new file mode 100644 index 0000000..f9fce97 --- /dev/null +++ b/BaseConverter.sln @@ -0,0 +1,20 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual C# Express 2008 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BaseConverter", "BaseConverter\BaseConverter.csproj", "{9AB5033E-6312-4170-9C91-46367A86367E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9AB5033E-6312-4170-9C91-46367A86367E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9AB5033E-6312-4170-9C91-46367A86367E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9AB5033E-6312-4170-9C91-46367A86367E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9AB5033E-6312-4170-9C91-46367A86367E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/BaseConverter.suo b/BaseConverter.suo new file mode 100644 index 0000000..37fee56 Binary files /dev/null and b/BaseConverter.suo differ diff --git a/BaseConverter/BaseConverter.csproj b/BaseConverter/BaseConverter.csproj new file mode 100644 index 0000000..a060338 --- /dev/null +++ b/BaseConverter/BaseConverter.csproj @@ -0,0 +1,132 @@ + + + + Debug + AnyCPU + 9.0.21022 + 2.0 + {9AB5033E-6312-4170-9C91-46367A86367E} + WinExe + Properties + WindowsFormsApplication1 + BaseConverter + v3.5 + 512 + 8E4755E7D781A587530C73F757CE9805D22E1DEC + BaseConverter_TemporaryKey.pfx + true + true + false + C:\Documents and Settings\Caleb Fontenot\Desktop\Stuff\VS Projects\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 1 + 1.0.0.%2a + false + true + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + 3.5 + + + 3.5 + + + 3.5 + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + Designer + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + False + .NET Framework 2.0 %28x86%29 + false + + + False + .NET Framework 3.0 %28x86%29 + false + + + False + .NET Framework 3.5 + true + + + False + Windows Installer 3.1 + true + + + + + \ No newline at end of file diff --git a/BaseConverter/BaseConverter.csproj.user b/BaseConverter/BaseConverter.csproj.user new file mode 100644 index 0000000..55af084 --- /dev/null +++ b/BaseConverter/BaseConverter.csproj.user @@ -0,0 +1,16 @@ + + + + + + + + + + + + + en-US + false + + \ No newline at end of file diff --git a/BaseConverter/BaseConverter_TemporaryKey.pfx b/BaseConverter/BaseConverter_TemporaryKey.pfx new file mode 100644 index 0000000..f34782e Binary files /dev/null and b/BaseConverter/BaseConverter_TemporaryKey.pfx differ diff --git a/BaseConverter/Form1.Designer.cs b/BaseConverter/Form1.Designer.cs new file mode 100644 index 0000000..00ae9a1 --- /dev/null +++ b/BaseConverter/Form1.Designer.cs @@ -0,0 +1,270 @@ +namespace WindowsFormsApplication1 +{ + partial class Form1 + { + /// + /// 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.computeButton = new System.Windows.Forms.Button(); + this.clearButton = new System.Windows.Forms.Button(); + this.groupBox1 = new System.Windows.Forms.GroupBox(); + this.hexTextBox = new System.Windows.Forms.TextBox(); + this.binaryGroupBox = new System.Windows.Forms.GroupBox(); + this.binaryTextBox = new System.Windows.Forms.TextBox(); + this.groupBox2 = new System.Windows.Forms.GroupBox(); + this.decimalTextBox = new System.Windows.Forms.TextBox(); + this.exitButton = new System.Windows.Forms.Button(); + this.groupBox3 = new System.Windows.Forms.GroupBox(); + this.decimalRadioButton = new System.Windows.Forms.RadioButton(); + this.hexRadioButton = new System.Windows.Forms.RadioButton(); + this.binaryRadioButton = new System.Windows.Forms.RadioButton(); + this.groupBox4 = new System.Windows.Forms.GroupBox(); + this.octalTextBox = new System.Windows.Forms.TextBox(); + this.octalRadioButton = new System.Windows.Forms.RadioButton(); + this.groupBox1.SuspendLayout(); + this.binaryGroupBox.SuspendLayout(); + this.groupBox2.SuspendLayout(); + this.groupBox3.SuspendLayout(); + this.groupBox4.SuspendLayout(); + this.SuspendLayout(); + // + // computeButton + // + this.computeButton.Location = new System.Drawing.Point(12, 319); + this.computeButton.Name = "computeButton"; + this.computeButton.Size = new System.Drawing.Size(91, 23); + this.computeButton.TabIndex = 5; + this.computeButton.Text = "Compute!"; + this.computeButton.UseVisualStyleBackColor = true; + this.computeButton.Click += new System.EventHandler(this.computeButton_Click); + // + // clearButton + // + this.clearButton.Location = new System.Drawing.Point(109, 319); + this.clearButton.Name = "clearButton"; + this.clearButton.Size = new System.Drawing.Size(85, 23); + this.clearButton.TabIndex = 6; + this.clearButton.Text = "Clear"; + this.clearButton.UseVisualStyleBackColor = true; + this.clearButton.Click += new System.EventHandler(this.clearButton_Click); + // + // groupBox1 + // + this.groupBox1.Controls.Add(this.hexTextBox); + this.groupBox1.Location = new System.Drawing.Point(12, 72); + this.groupBox1.Name = "groupBox1"; + this.groupBox1.Size = new System.Drawing.Size(279, 54); + this.groupBox1.TabIndex = 1; + this.groupBox1.TabStop = false; + this.groupBox1.Text = "Hexadecimal"; + // + // hexTextBox + // + this.hexTextBox.AccessibleDescription = ""; + this.hexTextBox.Location = new System.Drawing.Point(7, 20); + this.hexTextBox.Name = "hexTextBox"; + this.hexTextBox.Size = new System.Drawing.Size(261, 20); + this.hexTextBox.TabIndex = 0; + this.hexTextBox.Text = "0"; + // + // binaryGroupBox + // + this.binaryGroupBox.Controls.Add(this.binaryTextBox); + this.binaryGroupBox.Location = new System.Drawing.Point(12, 12); + this.binaryGroupBox.Name = "binaryGroupBox"; + this.binaryGroupBox.Size = new System.Drawing.Size(279, 54); + this.binaryGroupBox.TabIndex = 0; + this.binaryGroupBox.TabStop = false; + this.binaryGroupBox.Text = "Binary"; + // + // binaryTextBox + // + this.binaryTextBox.AccessibleDescription = ""; + this.binaryTextBox.Location = new System.Drawing.Point(7, 20); + this.binaryTextBox.Name = "binaryTextBox"; + this.binaryTextBox.Size = new System.Drawing.Size(261, 20); + this.binaryTextBox.TabIndex = 0; + this.binaryTextBox.Text = "0"; + // + // groupBox2 + // + this.groupBox2.Controls.Add(this.decimalTextBox); + this.groupBox2.Location = new System.Drawing.Point(12, 192); + this.groupBox2.Name = "groupBox2"; + this.groupBox2.Size = new System.Drawing.Size(279, 54); + this.groupBox2.TabIndex = 3; + this.groupBox2.TabStop = false; + this.groupBox2.Text = "Decimal"; + // + // decimalTextBox + // + this.decimalTextBox.AccessibleDescription = ""; + this.decimalTextBox.Location = new System.Drawing.Point(7, 20); + this.decimalTextBox.Name = "decimalTextBox"; + this.decimalTextBox.Size = new System.Drawing.Size(261, 20); + this.decimalTextBox.TabIndex = 0; + this.decimalTextBox.Text = "0"; + // + // exitButton + // + this.exitButton.Location = new System.Drawing.Point(200, 319); + this.exitButton.Name = "exitButton"; + this.exitButton.Size = new System.Drawing.Size(91, 23); + this.exitButton.TabIndex = 7; + this.exitButton.Text = "Exit"; + this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); + // + // groupBox3 + // + this.groupBox3.Controls.Add(this.octalRadioButton); + this.groupBox3.Controls.Add(this.decimalRadioButton); + this.groupBox3.Controls.Add(this.hexRadioButton); + this.groupBox3.Controls.Add(this.binaryRadioButton); + this.groupBox3.Location = new System.Drawing.Point(12, 252); + this.groupBox3.Name = "groupBox3"; + this.groupBox3.Size = new System.Drawing.Size(279, 52); + this.groupBox3.TabIndex = 4; + this.groupBox3.TabStop = false; + this.groupBox3.Text = "Which Base would you like to convert from?"; + // + // decimalRadioButton + // + this.decimalRadioButton.AutoSize = true; + this.decimalRadioButton.Location = new System.Drawing.Point(215, 19); + this.decimalRadioButton.Name = "decimalRadioButton"; + this.decimalRadioButton.Size = new System.Drawing.Size(63, 17); + this.decimalRadioButton.TabIndex = 2; + this.decimalRadioButton.TabStop = true; + this.decimalRadioButton.Text = "Decimal"; + this.decimalRadioButton.UseVisualStyleBackColor = true; + this.decimalRadioButton.CheckedChanged += new System.EventHandler(this.decimalRadioButton_CheckedChanged); + // + // hexRadioButton + // + this.hexRadioButton.AutoSize = true; + this.hexRadioButton.Location = new System.Drawing.Point(67, 19); + this.hexRadioButton.Name = "hexRadioButton"; + this.hexRadioButton.Size = new System.Drawing.Size(86, 17); + this.hexRadioButton.TabIndex = 1; + this.hexRadioButton.TabStop = true; + this.hexRadioButton.Text = "Hexadecimal"; + this.hexRadioButton.UseVisualStyleBackColor = true; + this.hexRadioButton.CheckedChanged += new System.EventHandler(this.hexRadioButton_CheckedChanged); + // + // binaryRadioButton + // + this.binaryRadioButton.AutoSize = true; + this.binaryRadioButton.Location = new System.Drawing.Point(7, 19); + this.binaryRadioButton.Name = "binaryRadioButton"; + this.binaryRadioButton.Size = new System.Drawing.Size(54, 17); + this.binaryRadioButton.TabIndex = 0; + this.binaryRadioButton.TabStop = true; + this.binaryRadioButton.Text = "Binary"; + this.binaryRadioButton.UseVisualStyleBackColor = true; + this.binaryRadioButton.CheckedChanged += new System.EventHandler(this.binaryRadioButton_CheckedChanged); + // + // groupBox4 + // + this.groupBox4.Controls.Add(this.octalTextBox); + this.groupBox4.Location = new System.Drawing.Point(12, 132); + this.groupBox4.Name = "groupBox4"; + this.groupBox4.Size = new System.Drawing.Size(279, 54); + this.groupBox4.TabIndex = 2; + this.groupBox4.TabStop = false; + this.groupBox4.Text = "Octal"; + // + // octalTextBox + // + this.octalTextBox.AccessibleDescription = ""; + this.octalTextBox.Location = new System.Drawing.Point(7, 20); + this.octalTextBox.Name = "octalTextBox"; + this.octalTextBox.Size = new System.Drawing.Size(261, 20); + this.octalTextBox.TabIndex = 0; + this.octalTextBox.Text = "0"; + // + // octalRadioButton + // + this.octalRadioButton.AutoSize = true; + this.octalRadioButton.Location = new System.Drawing.Point(159, 19); + this.octalRadioButton.Name = "octalRadioButton"; + this.octalRadioButton.Size = new System.Drawing.Size(50, 17); + this.octalRadioButton.TabIndex = 3; + this.octalRadioButton.TabStop = true; + this.octalRadioButton.Text = "Octal"; + this.octalRadioButton.UseVisualStyleBackColor = true; + this.octalRadioButton.CheckedChanged += new System.EventHandler(this.octalRadioButton_CheckedChanged); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(300, 347); + this.Controls.Add(this.groupBox4); + this.Controls.Add(this.groupBox3); + this.Controls.Add(this.exitButton); + this.Controls.Add(this.groupBox2); + this.Controls.Add(this.binaryGroupBox); + this.Controls.Add(this.groupBox1); + this.Controls.Add(this.clearButton); + this.Controls.Add(this.computeButton); + this.Name = "Form1"; + this.Text = "Base Converter"; + this.groupBox1.ResumeLayout(false); + this.groupBox1.PerformLayout(); + this.binaryGroupBox.ResumeLayout(false); + this.binaryGroupBox.PerformLayout(); + this.groupBox2.ResumeLayout(false); + this.groupBox2.PerformLayout(); + this.groupBox3.ResumeLayout(false); + this.groupBox3.PerformLayout(); + this.groupBox4.ResumeLayout(false); + this.groupBox4.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Button computeButton; + private System.Windows.Forms.Button clearButton; + private System.Windows.Forms.GroupBox groupBox1; + private System.Windows.Forms.TextBox hexTextBox; + private System.Windows.Forms.GroupBox binaryGroupBox; + private System.Windows.Forms.TextBox binaryTextBox; + private System.Windows.Forms.GroupBox groupBox2; + private System.Windows.Forms.TextBox decimalTextBox; + private System.Windows.Forms.Button exitButton; + private System.Windows.Forms.GroupBox groupBox3; + private System.Windows.Forms.RadioButton decimalRadioButton; + private System.Windows.Forms.RadioButton hexRadioButton; + private System.Windows.Forms.RadioButton binaryRadioButton; + private System.Windows.Forms.RadioButton octalRadioButton; + private System.Windows.Forms.GroupBox groupBox4; + private System.Windows.Forms.TextBox octalTextBox; + } +} + diff --git a/BaseConverter/Form1.cs b/BaseConverter/Form1.cs new file mode 100644 index 0000000..821949f --- /dev/null +++ b/BaseConverter/Form1.cs @@ -0,0 +1,146 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace WindowsFormsApplication1 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + + + private void currentFocus(string focusOn) { + switch (focusOn) + { + case "binaryTextBox": + binaryTextBox.Focus(); + break; + case "hexTextBox": + hexTextBox.Focus(); + break; + case "octalRadioButton": + octalTextBox.Focus(); + break; + case "decimalTextBox": + decimalTextBox.Focus(); + break; + default: + this.Focus(); + break; + } + } + + private void clearTextboxes() + { + hexTextBox.Text = "0"; + binaryTextBox.Text = "0"; + octalTextBox.Text = "0"; + decimalTextBox.Text = "0"; + } + + private void computeButton_Click(object sender, EventArgs e) + { + // Define variables + int decimalNum = 0, hexNum = 0, binNum = 0, octalNum = 0; + + try + { // Extract data from text boxes. + decimalNum = int.Parse(decimalTextBox.Text); + hexNum = Convert.ToInt32(hexTextBox.Text, 16); + binNum = Convert.ToInt32(binaryTextBox.Text, 2); + octalNum = Convert.ToInt32(octalTextBox.Text, 8); + } + catch (Exception Ex) + { + clearTextboxes(); + MessageBox.Show("Invalid number entered into one of the textboxes!"); + } + + // What does the user want us to convert from? + if (decimalRadioButton.Checked) + { + // The decimal radio button is pressed. + hexNum = decimalNum; + binNum = decimalNum; + octalNum = decimalNum; + } + if (octalRadioButton.Checked) { + // The octal radio button is pressed. + hexNum = octalNum; + binNum = octalNum; + decimalNum = octalNum; + + } + if (hexRadioButton.Checked) + { + // The hexadecimal radio button is pressed. + binNum = hexNum; + decimalNum = hexNum; + octalNum = hexNum; + + } + if (binaryRadioButton.Checked) + { + // The binary radio button is pressed. + hexNum = binNum; + decimalNum = binNum; + octalNum = binNum; + } + // Print output + decimalTextBox.Text = decimalNum.ToString(); + hexTextBox.Text = hexNum.ToString("X"); + binaryTextBox.Text = Convert.ToString(binNum, 2); + octalTextBox.Text = Convert.ToString(octalNum, 8); + } + + private void clearButton_Click(object sender, EventArgs e) + { + // Clear the textboxes. + clearTextboxes(); + + // Reset focus to the textbox that is currently selected to be converted to. + if (decimalRadioButton.Checked) + currentFocus("decimalTextBox"); + if (hexRadioButton.Checked) + currentFocus("hexTextBox"); + if (binaryRadioButton.Checked) + currentFocus("binaryTextBox"); + if (octalRadioButton.Checked) + currentFocus("octalTextBox"); + } + + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void binaryRadioButton_CheckedChanged(object sender, EventArgs e) + { + currentFocus("binaryTextBox"); + } + + private void hexRadioButton_CheckedChanged(object sender, EventArgs e) + { + currentFocus("hexTextBox"); + } + + private void decimalRadioButton_CheckedChanged(object sender, EventArgs e) + { + currentFocus("decimalTextBox"); + } + + private void octalRadioButton_CheckedChanged(object sender, EventArgs e) + { + currentFocus("octalTextBox"); + } + } +} \ No newline at end of file diff --git a/BaseConverter/Form1.resx b/BaseConverter/Form1.resx new file mode 100644 index 0000000..19dc0dd --- /dev/null +++ b/BaseConverter/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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/BaseConverter/Program.cs b/BaseConverter/Program.cs new file mode 100644 index 0000000..f369989 --- /dev/null +++ b/BaseConverter/Program.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Windows.Forms; + +namespace WindowsFormsApplication1 +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/BaseConverter/Properties/AssemblyInfo.cs b/BaseConverter/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..88bb128 --- /dev/null +++ b/BaseConverter/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("WindowsFormsApplication1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WindowsFormsApplication1")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[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("ab9dd494-e4ab-41bc-af12-9e7cae73ee51")] + +// 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/BaseConverter/Properties/Resources.Designer.cs b/BaseConverter/Properties/Resources.Designer.cs new file mode 100644 index 0000000..37c5a44 --- /dev/null +++ b/BaseConverter/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.8761 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WindowsFormsApplication1.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", "2.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("WindowsFormsApplication1.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/BaseConverter/Properties/Resources.resx b/BaseConverter/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/BaseConverter/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/BaseConverter/Properties/Settings.Designer.cs b/BaseConverter/Properties/Settings.Designer.cs new file mode 100644 index 0000000..a915a34 --- /dev/null +++ b/BaseConverter/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.8761 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace WindowsFormsApplication1.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.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/BaseConverter/Properties/Settings.settings b/BaseConverter/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/BaseConverter/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/BaseConverter/bin/Debug/BaseConverter.exe b/BaseConverter/bin/Debug/BaseConverter.exe new file mode 100644 index 0000000..bfaf180 Binary files /dev/null and b/BaseConverter/bin/Debug/BaseConverter.exe differ diff --git a/BaseConverter/bin/Debug/BaseConverter.pdb b/BaseConverter/bin/Debug/BaseConverter.pdb new file mode 100644 index 0000000..037b7f8 Binary files /dev/null and b/BaseConverter/bin/Debug/BaseConverter.pdb differ diff --git a/BaseConverter/bin/Debug/BaseConverter.vshost.exe b/BaseConverter/bin/Debug/BaseConverter.vshost.exe new file mode 100644 index 0000000..69ed6c0 Binary files /dev/null and b/BaseConverter/bin/Debug/BaseConverter.vshost.exe differ diff --git a/BaseConverter/bin/Debug/BaseConverter.vshost.exe.manifest b/BaseConverter/bin/Debug/BaseConverter.vshost.exe.manifest new file mode 100644 index 0000000..061c9ca --- /dev/null +++ b/BaseConverter/bin/Debug/BaseConverter.vshost.exe.manifest @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/BaseConverter/bin/Debug/WindowsFormsApplication1.vshost.exe b/BaseConverter/bin/Debug/WindowsFormsApplication1.vshost.exe new file mode 100644 index 0000000..69ed6c0 Binary files /dev/null and b/BaseConverter/bin/Debug/WindowsFormsApplication1.vshost.exe differ diff --git a/BaseConverter/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest b/BaseConverter/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest new file mode 100644 index 0000000..061c9ca --- /dev/null +++ b/BaseConverter/bin/Debug/WindowsFormsApplication1.vshost.exe.manifest @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/BaseConverter/bin/Release/BaseConverter.application b/BaseConverter/bin/Release/BaseConverter.application new file mode 100644 index 0000000..0a98659 --- /dev/null +++ b/BaseConverter/bin/Release/BaseConverter.application @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + J2nb3DF1XoXkowMGq8WaHk1FvaM= + + + + \ No newline at end of file diff --git a/BaseConverter/bin/Release/BaseConverter.exe b/BaseConverter/bin/Release/BaseConverter.exe new file mode 100644 index 0000000..54377b2 Binary files /dev/null and b/BaseConverter/bin/Release/BaseConverter.exe differ diff --git a/BaseConverter/bin/Release/BaseConverter.exe.manifest b/BaseConverter/bin/Release/BaseConverter.exe.manifest new file mode 100644 index 0000000..20c85c9 --- /dev/null +++ b/BaseConverter/bin/Release/BaseConverter.exe.manifest @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 37w5RAhS14r0968SQttd6Ahu8uE= + + + + \ No newline at end of file diff --git a/BaseConverter/bin/Release/BaseConverter.pdb b/BaseConverter/bin/Release/BaseConverter.pdb new file mode 100644 index 0000000..15754ce Binary files /dev/null and b/BaseConverter/bin/Release/BaseConverter.pdb differ diff --git a/BaseConverter/bin/Release/app.publish/Application Files/BaseConverter_1_0_0_0/BaseConverter.exe.deploy b/BaseConverter/bin/Release/app.publish/Application Files/BaseConverter_1_0_0_0/BaseConverter.exe.deploy new file mode 100644 index 0000000..4db41c0 Binary files /dev/null and b/BaseConverter/bin/Release/app.publish/Application Files/BaseConverter_1_0_0_0/BaseConverter.exe.deploy differ diff --git a/BaseConverter/bin/Release/app.publish/Application Files/BaseConverter_1_0_0_0/BaseConverter.exe.manifest b/BaseConverter/bin/Release/app.publish/Application Files/BaseConverter_1_0_0_0/BaseConverter.exe.manifest new file mode 100644 index 0000000..0299d9d --- /dev/null +++ b/BaseConverter/bin/Release/app.publish/Application Files/BaseConverter_1_0_0_0/BaseConverter.exe.manifest @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 4B5sdG+NZhgvIFdevJ2qd85f7E8= + + + +7HyeCoE8guEXyJF5iYJqkdRbVNU=U4t7JKt4l24ezPPHxGlJYwskF5xWxsJeE7j5Ddzk9TfogDd7eJeViPkjbmr0YlUJhwWCRiqj8Wh2ecRSoteaXku30SIqKEVdIEtknwLaiqErnjzbxWWxokjxOVt8TIQ29P2cyNHeOY18qi4Ic+HY+sKSc3PP/d5nloY8mmbF2Rc=ypx6XwPDs0XYBnGdLa/a6WZ0Mwth9gYep9U7eb9aw/lsbsQks3iR7V8Xzdrp1e8KwDbOuYV9UkLMhY8KmGIWyWXonZar6tOU2qg7K7Vy1EMtYpx1At/rRKjJcOWiWwFr3o1b9rt8KJyfrCXtvX7ats7NML6/DVON12CT4rAsC2U=AQABCN=WINXP-LAPTOP\Caleb FontenotDQK7tSvXk0ev45be416rMEGWCLg=ZBahT3awEqwT7fOJXxBJnOz3xA+GTguTtOlWhL6D8AB4ZqiqnyQXJ4gTiBvqqB3JzcfsA0xJIisI7xWYECIHFaKlRhC9iJEt0l+KyCQtFxS0qTDWobeQoVIMeIdTTuPoIIwoNwBwyWhfR6j0ueOaxfe0chr2KNnd7rLIQj3zU1w=ypx6XwPDs0XYBnGdLa/a6WZ0Mwth9gYep9U7eb9aw/lsbsQks3iR7V8Xzdrp1e8KwDbOuYV9UkLMhY8KmGIWyWXonZar6tOU2qg7K7Vy1EMtYpx1At/rRKjJcOWiWwFr3o1b9rt8KJyfrCXtvX7ats7NML6/DVON12CT4rAsC2U=AQABMIIB/TCCAWqgAwIBAgIQOoM8VtyOrKpIbtjJOzwnqjAJBgUrDgMCHQUAMEExPzA9BgNVBAMeNgBXAEkATgBYAFAALQBMAEEAUABUAE8AUABcAEMAYQBsAGUAYgAgAEYAbwBuAHQAZQBuAG8AdDAeFw0yMjEwMDMxOTIzMThaFw0yMzEwMDQwMTIzMThaMEExPzA9BgNVBAMeNgBXAEkATgBYAFAALQBMAEEAUABUAE8AUABcAEMAYQBsAGUAYgAgAEYAbwBuAHQAZQBuAG8AdDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAypx6XwPDs0XYBnGdLa/a6WZ0Mwth9gYep9U7eb9aw/lsbsQks3iR7V8Xzdrp1e8KwDbOuYV9UkLMhY8KmGIWyWXonZar6tOU2qg7K7Vy1EMtYpx1At/rRKjJcOWiWwFr3o1b9rt8KJyfrCXtvX7ats7NML6/DVON12CT4rAsC2UCAwEAATAJBgUrDgMCHQUAA4GBALHGAz15dgoOycrm+CXAzq2VOPMDFOoTRCLmxQGnK8gcb+Srg3LOwOQcoO71xHUYxXZ82HHqA1Rp7ZD38lmGKBm0aibPybKrS/qwjGhKr+zLJR4qlOf6wDtpMvPnumWdxFcmKm39q6DIphbJT+U/uEUZHtNV+3+0zxrQdOtHV8y0 \ No newline at end of file diff --git a/BaseConverter/bin/Release/app.publish/BaseConverter.application b/BaseConverter/bin/Release/app.publish/BaseConverter.application new file mode 100644 index 0000000..1377b60 --- /dev/null +++ b/BaseConverter/bin/Release/app.publish/BaseConverter.application @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + VLqPWrItAxc3c9dQ8Y11UCCUcsU= + + + +rOmSe//w+39RJcqPMO1VWIjjkTk=uaHmbPKVQY25CIAwR1IxgvqcVccO51YW+RLdKR25I0O/bw/pRWbTkqSSKH5EGL+7O14btWD9U7NTuBCqLF13H0WtI7Wo6BJG+OQJm8BMbxAgkRJ9JFDiOa8Zq/zcDCdxQKBh5TmjDRVohsaamGBuqKteNy0D+PCuSDZH7tAcqkM=ypx6XwPDs0XYBnGdLa/a6WZ0Mwth9gYep9U7eb9aw/lsbsQks3iR7V8Xzdrp1e8KwDbOuYV9UkLMhY8KmGIWyWXonZar6tOU2qg7K7Vy1EMtYpx1At/rRKjJcOWiWwFr3o1b9rt8KJyfrCXtvX7ats7NML6/DVON12CT4rAsC2U=AQABCN=WINXP-LAPTOP\Caleb FontenotZFQ09b8otDdCMLnM6rbb9QMXGlg=JzCwuS69adTNc55Jn071UVzaGJF8IFYptS3tqyHlU/zarfJUKROTSfEL45VFZ4DJF3oogekx+L6KO1lC6kSxi858kxIe7NkcOSgusS0hLSwSX3/EQl6/d8osx4Oy9700ylUQAlNS2E9xTkrV9NRvRyCs0XJ4qgsjVJaYjUaMpCk=ypx6XwPDs0XYBnGdLa/a6WZ0Mwth9gYep9U7eb9aw/lsbsQks3iR7V8Xzdrp1e8KwDbOuYV9UkLMhY8KmGIWyWXonZar6tOU2qg7K7Vy1EMtYpx1At/rRKjJcOWiWwFr3o1b9rt8KJyfrCXtvX7ats7NML6/DVON12CT4rAsC2U=AQABMIIB/TCCAWqgAwIBAgIQOoM8VtyOrKpIbtjJOzwnqjAJBgUrDgMCHQUAMEExPzA9BgNVBAMeNgBXAEkATgBYAFAALQBMAEEAUABUAE8AUABcAEMAYQBsAGUAYgAgAEYAbwBuAHQAZQBuAG8AdDAeFw0yMjEwMDMxOTIzMThaFw0yMzEwMDQwMTIzMThaMEExPzA9BgNVBAMeNgBXAEkATgBYAFAALQBMAEEAUABUAE8AUABcAEMAYQBsAGUAYgAgAEYAbwBuAHQAZQBuAG8AdDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAypx6XwPDs0XYBnGdLa/a6WZ0Mwth9gYep9U7eb9aw/lsbsQks3iR7V8Xzdrp1e8KwDbOuYV9UkLMhY8KmGIWyWXonZar6tOU2qg7K7Vy1EMtYpx1At/rRKjJcOWiWwFr3o1b9rt8KJyfrCXtvX7ats7NML6/DVON12CT4rAsC2UCAwEAATAJBgUrDgMCHQUAA4GBALHGAz15dgoOycrm+CXAzq2VOPMDFOoTRCLmxQGnK8gcb+Srg3LOwOQcoO71xHUYxXZ82HHqA1Rp7ZD38lmGKBm0aibPybKrS/qwjGhKr+zLJR4qlOf6wDtpMvPnumWdxFcmKm39q6DIphbJT+U/uEUZHtNV+3+0zxrQdOtHV8y0 \ No newline at end of file diff --git a/BaseConverter/bin/Release/app.publish/setup.exe b/BaseConverter/bin/Release/app.publish/setup.exe new file mode 100644 index 0000000..9f0bc4e Binary files /dev/null and b/BaseConverter/bin/Release/app.publish/setup.exe differ diff --git a/BaseConverter/obj/Debug/BaseConverter.csproj.FileListAbsolute.txt b/BaseConverter/obj/Debug/BaseConverter.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..bff5bc8 --- /dev/null +++ b/BaseConverter/obj/Debug/BaseConverter.csproj.FileListAbsolute.txt @@ -0,0 +1,8 @@ +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Debug\ResolveAssemblyReference.cache +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Debug\WindowsFormsApplication1.Form1.resources +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Debug\WindowsFormsApplication1.Properties.Resources.resources +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Debug\BaseConverter.csproj.GenerateResource.Cache +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\bin\Debug\BaseConverter.exe +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\bin\Debug\BaseConverter.pdb +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Debug\BaseConverter.exe +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Debug\BaseConverter.pdb diff --git a/BaseConverter/obj/Debug/BaseConverter.csproj.GenerateResource.Cache b/BaseConverter/obj/Debug/BaseConverter.csproj.GenerateResource.Cache new file mode 100644 index 0000000..f46681e Binary files /dev/null and b/BaseConverter/obj/Debug/BaseConverter.csproj.GenerateResource.Cache differ diff --git a/BaseConverter/obj/Debug/BaseConverter.exe b/BaseConverter/obj/Debug/BaseConverter.exe new file mode 100644 index 0000000..bfaf180 Binary files /dev/null and b/BaseConverter/obj/Debug/BaseConverter.exe differ diff --git a/BaseConverter/obj/Debug/BaseConverter.pdb b/BaseConverter/obj/Debug/BaseConverter.pdb new file mode 100644 index 0000000..037b7f8 Binary files /dev/null and b/BaseConverter/obj/Debug/BaseConverter.pdb differ diff --git a/BaseConverter/obj/Debug/WindowsFormsApplication1.Form1.resources b/BaseConverter/obj/Debug/WindowsFormsApplication1.Form1.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/BaseConverter/obj/Debug/WindowsFormsApplication1.Form1.resources differ diff --git a/BaseConverter/obj/Debug/WindowsFormsApplication1.Properties.Resources.resources b/BaseConverter/obj/Debug/WindowsFormsApplication1.Properties.Resources.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/BaseConverter/obj/Debug/WindowsFormsApplication1.Properties.Resources.resources differ diff --git a/BaseConverter/obj/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt b/BaseConverter/obj/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..34c6862 --- /dev/null +++ b/BaseConverter/obj/Debug/WindowsFormsApplication1.csproj.FileListAbsolute.txt @@ -0,0 +1,4 @@ +C:\Documents and Settings\Caleb Fontenot\Local Settings\Application Data\Temporary Projects\WindowsFormsApplication1\obj\Debug\ResolveAssemblyReference.cache +C:\Documents and Settings\Caleb Fontenot\Local Settings\Application Data\Temporary Projects\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Form1.resources +C:\Documents and Settings\Caleb Fontenot\Local Settings\Application Data\Temporary Projects\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.Properties.Resources.resources +C:\Documents and Settings\Caleb Fontenot\Local Settings\Application Data\Temporary Projects\WindowsFormsApplication1\obj\Debug\WindowsFormsApplication1.csproj.GenerateResource.Cache diff --git a/BaseConverter/obj/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache b/BaseConverter/obj/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache new file mode 100644 index 0000000..6e068fd Binary files /dev/null and b/BaseConverter/obj/Debug/WindowsFormsApplication1.csproj.GenerateResource.Cache differ diff --git a/BaseConverter/obj/Release/BaseConverter.application b/BaseConverter/obj/Release/BaseConverter.application new file mode 100644 index 0000000..0a98659 --- /dev/null +++ b/BaseConverter/obj/Release/BaseConverter.application @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + J2nb3DF1XoXkowMGq8WaHk1FvaM= + + + + \ No newline at end of file diff --git a/BaseConverter/obj/Release/BaseConverter.csproj.FileListAbsolute.txt b/BaseConverter/obj/Release/BaseConverter.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2ddaf51 --- /dev/null +++ b/BaseConverter/obj/Release/BaseConverter.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\bin\Release\BaseConverter.exe.manifest +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\bin\Release\BaseConverter.application +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\bin\Release\BaseConverter.exe +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\bin\Release\BaseConverter.pdb +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\ResolveAssemblyReference.cache +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\WindowsFormsApplication1.Form1.resources +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\WindowsFormsApplication1.Properties.Resources.resources +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\BaseConverter.csproj.GenerateResource.Cache +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\BaseConverter.exe.manifest +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\BaseConverter.application +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\BaseConverter.exe +C:\Documents and Settings\Caleb Fontenot\My Documents\Visual Studio 2008\Projects\BaseConverter\BaseConverter\obj\Release\BaseConverter.pdb diff --git a/BaseConverter/obj/Release/BaseConverter.csproj.GenerateResource.Cache b/BaseConverter/obj/Release/BaseConverter.csproj.GenerateResource.Cache new file mode 100644 index 0000000..2cae1dd Binary files /dev/null and b/BaseConverter/obj/Release/BaseConverter.csproj.GenerateResource.Cache differ diff --git a/BaseConverter/obj/Release/BaseConverter.exe b/BaseConverter/obj/Release/BaseConverter.exe new file mode 100644 index 0000000..54377b2 Binary files /dev/null and b/BaseConverter/obj/Release/BaseConverter.exe differ diff --git a/BaseConverter/obj/Release/BaseConverter.exe.manifest b/BaseConverter/obj/Release/BaseConverter.exe.manifest new file mode 100644 index 0000000..20c85c9 --- /dev/null +++ b/BaseConverter/obj/Release/BaseConverter.exe.manifest @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 37w5RAhS14r0968SQttd6Ahu8uE= + + + + \ No newline at end of file diff --git a/BaseConverter/obj/Release/BaseConverter.pdb b/BaseConverter/obj/Release/BaseConverter.pdb new file mode 100644 index 0000000..15754ce Binary files /dev/null and b/BaseConverter/obj/Release/BaseConverter.pdb differ diff --git a/BaseConverter/obj/Release/WindowsFormsApplication1.Form1.resources b/BaseConverter/obj/Release/WindowsFormsApplication1.Form1.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/BaseConverter/obj/Release/WindowsFormsApplication1.Form1.resources differ diff --git a/BaseConverter/obj/Release/WindowsFormsApplication1.Properties.Resources.resources b/BaseConverter/obj/Release/WindowsFormsApplication1.Properties.Resources.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/BaseConverter/obj/Release/WindowsFormsApplication1.Properties.Resources.resources differ