for synco answers

profileLeila@
invoice_total_2.zip

Invoice Total 2/.vs/Invoice Total2/v14/.suo

Invoice Total 2/Invoice Total2.sln

Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.23107.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Invoice Total2", "Invoice Total2\Invoice Total2.csproj", "{02D3A0B9-9F10-4917-9D0A-8A09F8856A3A}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {02D3A0B9-9F10-4917-9D0A-8A09F8856A3A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {02D3A0B9-9F10-4917-9D0A-8A09F8856A3A}.Debug|Any CPU.Build.0 = Debug|Any CPU {02D3A0B9-9F10-4917-9D0A-8A09F8856A3A}.Release|Any CPU.ActiveCfg = Release|Any CPU {02D3A0B9-9F10-4917-9D0A-8A09F8856A3A}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal

Invoice Total 2/Invoice Total2/App.config

Invoice Total 2/Invoice Total2/bin/Debug/Invoice Total2.exe

Invoice Total 2/Invoice Total2/bin/Debug/Invoice Total2.exe.config

Invoice Total 2/Invoice Total2/bin/Debug/Invoice Total2.pdb

Invoice Total 2/Invoice Total2/bin/Debug/Invoice Total2.vshost.exe

Invoice Total 2/Invoice Total2/bin/Debug/Invoice Total2.vshost.exe.config

Invoice Total 2/Invoice Total2/Form1.cs

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 Invoice_Total2 /* ****************************************************** * Project: <Invoice Total 2> * Programmer: <Brian Jenkins> * Date: <2/3/2016>. * Description: <Design an invoice total form.> ******************.*************************************/ { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void label2_Click(object sender, EventArgs e) { } } }

Invoice Total 2/Invoice Total2/Form1.Designer.cs

namespace Invoice_Total2 { partial class Form1 { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { 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.textBox1 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox3 = new System.Windows.Forms.TextBox(); this.textBox4 = new System.Windows.Forms.TextBox(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(46, 13); this.label1.TabIndex = 0; this.label1.Text = "Subtotal"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(12, 49); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(89, 13); this.label2.TabIndex = 1; this.label2.Text = "Discount Percent"; this.label2.Click += new System.EventHandler(this.label2_Click); // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(12, 100); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(88, 13); this.label3.TabIndex = 2; this.label3.Text = "Discount Amount"; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(12, 153); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(31, 13); this.label4.TabIndex = 3; this.label4.Text = "Total"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(172, 6); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(100, 20); this.textBox1.TabIndex = 4; // // textBox2 // this.textBox2.Location = new System.Drawing.Point(172, 49); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(100, 20); this.textBox2.TabIndex = 5; // // textBox3 // this.textBox3.Location = new System.Drawing.Point(172, 100); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(100, 20); this.textBox3.TabIndex = 6; // // textBox4 // this.textBox4.Location = new System.Drawing.Point(172, 153); this.textBox4.Name = "textBox4"; this.textBox4.Size = new System.Drawing.Size(100, 20); this.textBox4.TabIndex = 7; // // button1 // this.button1.Location = new System.Drawing.Point(47, 196); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(75, 23); this.button1.TabIndex = 8; this.button1.Text = "Calculate"; this.button1.UseVisualStyleBackColor = true; // // button2 // this.button2.Location = new System.Drawing.Point(149, 196); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(75, 23); this.button2.TabIndex = 9; this.button2.Text = "Exit"; this.button2.UseVisualStyleBackColor = true; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(284, 261); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.textBox4); this.Controls.Add(this.textBox3); this.Controls.Add(this.textBox2); this.Controls.Add(this.textBox1); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "Form1"; this.Text = "Invoice Total"; this.Load += new System.EventHandler(this.Form1_Load); this.ResumeLayout(false); this.PerformLayout(); } #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.TextBox textBox1; private System.Windows.Forms.TextBox textBox2; private System.Windows.Forms.TextBox textBox3; private System.Windows.Forms.TextBox textBox4; private System.Windows.Forms.Button button1; private System.Windows.Forms.Button button2; } }

Invoice Total 2/Invoice Total2/Form1.resx

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

Invoice Total 2/Invoice Total2/Invoice Total2.csproj

Debug AnyCPU {02D3A0B9-9F10-4917-9D0A-8A09F8856A3A} WinExe Properties Invoice_Total2 Invoice Total2 v4.5.2 512 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

Invoice Total 2/Invoice Total2/obj/Debug/DesignTimeResolveAssemblyReferences.cache

Invoice Total 2/Invoice Total2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache

Invoice Total 2/Invoice Total2/obj/Debug/Invoice Total2.csproj.FileListAbsolute.txt

c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\bin\Debug\Invoice Total2.exe.config c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\bin\Debug\Invoice Total2.exe c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\bin\Debug\Invoice Total2.pdb c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\obj\Debug\Invoice Total2.csprojResolveAssemblyReference.cache c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\obj\Debug\Invoice_Total2.Form1.resources c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\obj\Debug\Invoice_Total2.Properties.Resources.resources c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\obj\Debug\Invoice Total2.csproj.GenerateResource.Cache c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\obj\Debug\Invoice Total2.exe c:\users\brian\documents\visual studio 2015\Projects\Invoice Total2\Invoice Total2\obj\Debug\Invoice Total2.pdb

Invoice Total 2/Invoice Total2/obj/Debug/Invoice Total2.csproj.GenerateResource.Cache

Invoice Total 2/Invoice Total2/obj/Debug/Invoice Total2.csprojResolveAssemblyReference.cache

Invoice Total 2/Invoice Total2/obj/Debug/Invoice Total2.exe

Invoice Total 2/Invoice Total2/obj/Debug/Invoice Total2.pdb

Invoice Total 2/Invoice Total2/obj/Debug/Invoice_Total2.Form1.resources

Invoice Total 2/Invoice Total2/obj/Debug/Invoice_Total2.Properties.Resources.resources

Invoice Total 2/Invoice Total2/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs

Invoice Total 2/Invoice Total2/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs

Invoice Total 2/Invoice Total2/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs

Invoice Total 2/Invoice Total2/Program.cs

using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Invoice_Total2 { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }

Invoice Total 2/Invoice Total2/Properties/AssemblyInfo.cs

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("Invoice Total2")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Invoice Total2")] [assembly: AssemblyCopyright("Copyright © 2016")] [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("02d3a0b9-9f10-4917-9d0a-8a09f8856a3a")] // 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")]

Invoice Total 2/Invoice Total2/Properties/Resources.Designer.cs

//------------------------------------------------------------------------------ // <auto-generated> // 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. // </auto-generated> //------------------------------------------------------------------------------ namespace Invoice_Total2.Properties { /// <summary> /// A strongly-typed resource class, for looking up localized strings, etc. /// </summary> // 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() { } /// <summary> /// Returns the cached ResourceManager instance used by this class. /// </summary> [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("Invoice_Total2.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// <summary> /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// </summary> [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } } }

Invoice Total 2/Invoice Total2/Properties/Resources.resx

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

Invoice Total 2/Invoice Total2/Properties/Settings.Designer.cs

//------------------------------------------------------------------------------ // <auto-generated> // 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. // </auto-generated> //------------------------------------------------------------------------------ namespace Invoice_Total2.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; } } } }

Invoice Total 2/Invoice Total2/Properties/Settings.settings