82646Updated/Exam2_Raul_Ramos/.vs/Exam2_Raul_Ramos/v16/.suo
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/App.config
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/bin/Debug/Exam2_Raul_Ramos.exe
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/bin/Debug/Exam2_Raul_Ramos.exe.config
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/bin/Debug/Exam2_Raul_Ramos.pdb
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/bin/Debug/restaurant.mdb
ItemNumber ItemName Category Price
1 Soda Beverage ¤ 1.95
2 Sweet Tea Beverage ¤ 1.50
3 Water Beverage ¤ 1.25
4 Juice Beverage ¤ 2.50
5 Nachos Appetizer ¤ 5.95
6 Buffalo Wings Appetizer ¤ 8.95
7 Potato Skins Appetizer ¤ 7.95
8 Seafood Alfredo Main Course ¤ 15.95
9 Tukey Club Main Course ¤ 11.95
10 Prime Rib Main Course ¤ 18.95
11 Lobster Pie Main Course ¤ 19.95
12 Apple Pie Dessert ¤ 5.95
13 Carrot Cake Dessert ¤ 4.95
14 Unsweet Tea Beverage ¤ 1.50
15 French Fries Appetizer ¤ 3.95
16 Steak Main Course ¤ 17.95
17 Ice Cream Dessert ¤ 2.95
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/Exam2_Raul_Ramos.csproj
Debug
AnyCPU
{69D916D8-20E3-42DB-BCB9-9EF4EA4079A0}
WinExe
Exam2_Raul_Ramos
Exam2_Raul_Ramos
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
restaurantDataSet.xsd
True
True
restaurantDataSet.xsd
Form1.cs
ResXFileCodeGenerator
Resources.Designer.cs
Designer
True
Resources.resx
SettingsSingleFileGenerator
Settings.Designer.cs
True
Settings.settings
True
restaurantDataSet.xsd
MSDataSetGenerator
restaurantDataSet.Designer.cs
Designer
restaurantDataSet.xsd
Always
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Exam2_Raul_Ramos
{
public partial class Form1 : Form
{
private double subTotal = 0;
private double tax = 0;
private double tips = 0;
private double total = 0;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
// Connection string and SQL query
// Create a connection
using (OleDbConnection connection = new OleDbConnection("Provider = Microsoft.ACE.OLEDB.12.0; Data Source = restaurant.mdb"))
{
string strSQLBeverage = "Select * from Menu where Category ='Beverage'";
// Create a command and set its connection
OleDbCommand commandBeverage = new OleDbCommand(strSQLBeverage, connection);
string strSQLAppetizer = "Select * from Menu where Category ='Appetizer'";
// Create a command and set its connection
OleDbCommand commandAppetizer = new OleDbCommand(strSQLAppetizer, connection);
string strSQLMainCourse = "Select * from Menu where Category ='Main Course'";
// Create a command and set its connection
OleDbCommand commandMainCourse = new OleDbCommand(strSQLMainCourse, connection);
string strSQLDessert = "Select * from Menu where Category ='Dessert'";
// Create a command and set its connection
OleDbCommand commandDessert = new OleDbCommand(strSQLDessert, connection);
// Open the connection and execute the select command.
try
{
// Open connecton
connection.Open();
// Execute command for each categories and set value in listbox
using (OleDbDataReader reader = commandBeverage.ExecuteReader())
{
while (reader.Read())
{
listBoxBeverage.Items.Add(reader["ItemName"].ToString() + " $" + reader["Price"].ToString());
}
}
using (OleDbDataReader reader = commandAppetizer.ExecuteReader())
{
while (reader.Read())
{
listBoxAppetizer.Items.Add(reader["ItemName"].ToString() + " $" + reader["Price"].ToString());
}
}
using (OleDbDataReader reader = commandMainCourse.ExecuteReader())
{
while (reader.Read())
{
listBoxMainCourse.Items.Add(reader["ItemName"].ToString() + " $" + reader["Price"].ToString());
}
}
using (OleDbDataReader reader = commandDessert.ExecuteReader())
{
while (reader.Read())
{
listBoxDessert.Items.Add(reader["ItemName"].ToString() + " $" + reader["Price"].ToString());
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
// The connection is automatically closed becasuse of using block.
}
}
//Clear all value and labels
private void btnClear_Click(object sender, EventArgs e)
{
subTotal = 0;
tax = 0;
tips = 0;
total = 0;
txtBoxTips.Text = null;
txtNumberOfPeople.Text = null;
CalculateSubTotal(subTotal);
CalculateTax(subTotal);
CalculateTotal();
}
//On change set calculate sub total value
private void listBoxBeverage_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBoxBeverage.SelectedItem != null)
{
CalculateSubTotal(Convert.ToDouble(listBoxBeverage.SelectedItem.ToString().Split('$')[1]));
}
}
//On change set calculate sub total value
private void listBoxAppetizer_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBoxAppetizer.SelectedItem != null)
{
CalculateSubTotal(Convert.ToDouble(listBoxAppetizer.SelectedItem.ToString().Split('$')[1]));
}
}
//On change set calculate sub total value
private void listBoxMainCourse_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBoxMainCourse.SelectedItem != null)
{
CalculateSubTotal(Convert.ToDouble(listBoxMainCourse.SelectedItem.ToString().Split('$')[1]));
}
}
//On change set calculate sub total value
private void listBoxDessert_SelectedIndexChanged(object sender, EventArgs e)
{
}
//Calcualte subtotal and set label texta and calcualte tax from this method.
private void CalculateSubTotal(double subTotalValue)
{
subTotal = subTotal + subTotalValue;
lblSubTotal.Text = "$" + subTotal.ToString();
CalculateTax(subTotal);
}
//Calculate tax, which is 8% on subtotal
private void CalculateTax(double subTotalValue)
{
tax = .08 * subTotalValue;
lblTax.Text = "$" + tax.ToString();
CalculateTotal();
}
private void CalculateTotal()
{
total = tips + subTotal + tax;
lblTotal.Text = "$" + total.ToString();
}
//NUumber of people change event, check entered value is number or not and also enable disable tip,
//If number of people greater than 6 then automatically 15% of total is set as tip
private void txtNumberOfPeople_TextChanged(object sender, EventArgs e)
{
int numberVal = 0;
try
{
numberVal = Int32.Parse(txtNumberOfPeople.Text);
errorProvider1.SetError(txtNumberOfPeople, "");
tipTextBoxMethod();
}
catch
{
txtNumberOfPeople.Clear();
errorProvider1.SetError(txtNumberOfPeople, "Must be number only");
}
}
private void tipTextBoxMethod()
{
if (Convert.ToInt32(txtNumberOfPeople.Text) > 6)
{
tips = .15 * total;
txtBoxTips.Enabled = false;
CalculateTotal();
}
else
{
txtBoxTips.Enabled = true;
}
}
private void txtBoxTips_TextChanged(object sender, EventArgs e)
{
try
{
int numberVal = Int32.Parse(txtBoxTips.Text);
errorProvider2.SetError(txtBoxTips, "");
tips = Convert.ToDouble(txtBoxTips.Text);
CalculateTotal();
}
catch
{
txtBoxTips.Clear();
errorProvider2.SetError(txtBoxTips, "Must be number only");
}
}
private void listBoxDessert_SelectedIndexChanged_1(object sender, EventArgs e)
{
if (listBoxDessert.SelectedItem != null)
{
CalculateSubTotal(Convert.ToDouble(listBoxDessert.SelectedItem.ToString().Split('$')[1]));
}
}
}
}
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/Form1.Designer.cs
namespace Exam2_Raul_Ramos
{
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.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.txtNumberOfPeople = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
this.label6 = new System.Windows.Forms.Label();
this.label7 = new System.Windows.Forms.Label();
this.label8 = new System.Windows.Forms.Label();
this.label9 = new System.Windows.Forms.Label();
this.lblSubTotal = new System.Windows.Forms.Label();
this.lblTax = new System.Windows.Forms.Label();
this.lblTotal = new System.Windows.Forms.Label();
this.txtBoxTips = new System.Windows.Forms.TextBox();
this.btnClear = new System.Windows.Forms.Button();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
this.errorProvider2 = new System.Windows.Forms.ErrorProvider(this.components);
this.listBoxBeverage = new System.Windows.Forms.ComboBox();
this.listBoxAppetizer = new System.Windows.Forms.ComboBox();
this.listBoxMainCourse = new System.Windows.Forms.ComboBox();
this.listBoxDessert = new System.Windows.Forms.ComboBox();
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(147, 36);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(95, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Number of People:";
//
// txtNumberOfPeople
//
this.txtNumberOfPeople.Location = new System.Drawing.Point(287, 33);
this.txtNumberOfPeople.Name = "txtNumberOfPeople";
this.txtNumberOfPeople.Size = new System.Drawing.Size(138, 20);
this.txtNumberOfPeople.TabIndex = 1;
this.txtNumberOfPeople.TextChanged += new System.EventHandler(this.txtNumberOfPeople_TextChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(32, 83);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 13);
this.label2.TabIndex = 3;
this.label2.Text = "Beverage";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(245, 83);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(51, 13);
this.label3.TabIndex = 4;
this.label3.Text = "Appetizer";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(429, 83);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(66, 13);
this.label4.TabIndex = 6;
this.label4.Text = "Main Course";
//
// label5
//
this.label5.AutoSize = true;
this.label5.Location = new System.Drawing.Point(630, 83);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(43, 13);
this.label5.TabIndex = 8;
this.label5.Text = "Dessert";
//
// label6
//
this.label6.AutoSize = true;
this.label6.Location = new System.Drawing.Point(48, 285);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(53, 13);
this.label6.TabIndex = 10;
this.label6.Text = "SubTotal:";
//
// label7
//
this.label7.AutoSize = true;
this.label7.Location = new System.Drawing.Point(48, 317);
this.label7.Name = "label7";
this.label7.Size = new System.Drawing.Size(28, 13);
this.label7.TabIndex = 11;
this.label7.Text = "Tax:";
//
// label8
//
this.label8.AutoSize = true;
this.label8.Location = new System.Drawing.Point(48, 353);
this.label8.Name = "label8";
this.label8.Size = new System.Drawing.Size(30, 13);
this.label8.TabIndex = 12;
this.label8.Text = "Tips:";
//
// label9
//
this.label9.AutoSize = true;
this.label9.Location = new System.Drawing.Point(48, 388);
this.label9.Name = "label9";
this.label9.Size = new System.Drawing.Size(34, 13);
this.label9.TabIndex = 13;
this.label9.Text = "Total:";
//
// lblSubTotal
//
this.lblSubTotal.AutoSize = true;
this.lblSubTotal.Location = new System.Drawing.Point(197, 284);
this.lblSubTotal.Name = "lblSubTotal";
this.lblSubTotal.Size = new System.Drawing.Size(34, 13);
this.lblSubTotal.TabIndex = 14;
this.lblSubTotal.Text = "$0.00";
//
// lblTax
//
this.lblTax.AutoSize = true;
this.lblTax.Location = new System.Drawing.Point(197, 317);
this.lblTax.Name = "lblTax";
this.lblTax.Size = new System.Drawing.Size(34, 13);
this.lblTax.TabIndex = 15;
this.lblTax.Text = "$0.00";
//
// lblTotal
//
this.lblTotal.AutoSize = true;
this.lblTotal.Location = new System.Drawing.Point(200, 388);
this.lblTotal.Name = "lblTotal";
this.lblTotal.Size = new System.Drawing.Size(34, 13);
this.lblTotal.TabIndex = 16;
this.lblTotal.Text = "$0.00";
//
// txtBoxTips
//
this.txtBoxTips.Location = new System.Drawing.Point(200, 345);
this.txtBoxTips.Name = "txtBoxTips";
this.txtBoxTips.Size = new System.Drawing.Size(100, 20);
this.txtBoxTips.TabIndex = 17;
this.txtBoxTips.TextChanged += new System.EventHandler(this.txtBoxTips_TextChanged);
//
// btnClear
//
this.btnClear.Location = new System.Drawing.Point(676, 400);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(89, 28);
this.btnClear.TabIndex = 18;
this.btnClear.Text = "Clear";
this.btnClear.UseVisualStyleBackColor = true;
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// errorProvider2
//
this.errorProvider2.ContainerControl = this;
//
// listBoxBeverage
//
this.listBoxBeverage.FormattingEnabled = true;
this.listBoxBeverage.Location = new System.Drawing.Point(35, 119);
this.listBoxBeverage.Name = "listBoxBeverage";
this.listBoxBeverage.Size = new System.Drawing.Size(121, 21);
this.listBoxBeverage.TabIndex = 19;
this.listBoxBeverage.SelectedIndexChanged += new System.EventHandler(this.listBoxBeverage_SelectedIndexChanged);
//
// listBoxAppetizer
//
this.listBoxAppetizer.FormattingEnabled = true;
this.listBoxAppetizer.Location = new System.Drawing.Point(226, 119);
this.listBoxAppetizer.Name = "listBoxAppetizer";
this.listBoxAppetizer.Size = new System.Drawing.Size(121, 21);
this.listBoxAppetizer.TabIndex = 20;
this.listBoxAppetizer.SelectedIndexChanged += new System.EventHandler(this.listBoxAppetizer_SelectedIndexChanged);
//
// listBoxMainCourse
//
this.listBoxMainCourse.FormattingEnabled = true;
this.listBoxMainCourse.Location = new System.Drawing.Point(411, 119);
this.listBoxMainCourse.Name = "listBoxMainCourse";
this.listBoxMainCourse.Size = new System.Drawing.Size(121, 21);
this.listBoxMainCourse.TabIndex = 21;
this.listBoxMainCourse.SelectedIndexChanged += new System.EventHandler(this.listBoxMainCourse_SelectedIndexChanged);
//
// listBoxDessert
//
this.listBoxDessert.FormattingEnabled = true;
this.listBoxDessert.Location = new System.Drawing.Point(633, 118);
this.listBoxDessert.Name = "listBoxDessert";
this.listBoxDessert.Size = new System.Drawing.Size(121, 21);
this.listBoxDessert.TabIndex = 22;
this.listBoxDessert.SelectedIndexChanged += new System.EventHandler(this.listBoxDessert_SelectedIndexChanged_1);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.listBoxDessert);
this.Controls.Add(this.listBoxMainCourse);
this.Controls.Add(this.listBoxAppetizer);
this.Controls.Add(this.listBoxBeverage);
this.Controls.Add(this.btnClear);
this.Controls.Add(this.txtBoxTips);
this.Controls.Add(this.lblTotal);
this.Controls.Add(this.lblTax);
this.Controls.Add(this.lblSubTotal);
this.Controls.Add(this.label9);
this.Controls.Add(this.label8);
this.Controls.Add(this.label7);
this.Controls.Add(this.label6);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.txtNumberOfPeople);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Restaurant Bill";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.errorProvider2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtNumberOfPeople;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label6;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.Label label8;
private System.Windows.Forms.Label label9;
private System.Windows.Forms.Label lblSubTotal;
private System.Windows.Forms.Label lblTax;
private System.Windows.Forms.Label lblTotal;
private System.Windows.Forms.TextBox txtBoxTips;
private System.Windows.Forms.Button btnClear;
private System.Windows.Forms.ErrorProvider errorProvider1;
private System.Windows.Forms.ErrorProvider errorProvider2;
private System.Windows.Forms.ComboBox listBoxBeverage;
private System.Windows.Forms.ComboBox listBoxAppetizer;
private System.Windows.Forms.ComboBox listBoxMainCourse;
private System.Windows.Forms.ComboBox listBoxDessert;
}
}
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/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
17, 17
147, 17
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
//
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/DesignTimeResolveAssemblyReferences.cache
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.csproj.CoreCompileInputs.cache
2c06795112fab36aa473c5595bf3aed9380257d4
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.csproj.FileListAbsolute.txt
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\restaurant.mdb
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\Exam2_Raul_Ramos.exe.config
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\Exam2_Raul_Ramos.exe
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\Exam2_Raul_Ramos.pdb
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.csprojAssemblyReference.cache
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.Form1.resources
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.Properties.Resources.resources
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.csproj.GenerateResource.cache
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.csproj.CoreCompileInputs.cache
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.exe
C:\Users\Acer\source\repos\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.pdb
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\restaurant.mdb
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\Exam2_Raul_Ramos.exe.config
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\Exam2_Raul_Ramos.exe
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\bin\Debug\Exam2_Raul_Ramos.pdb
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.csprojAssemblyReference.cache
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.Form1.resources
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.Properties.Resources.resources
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.csproj.GenerateResource.cache
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.csproj.CoreCompileInputs.cache
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.exe
C:\Users\Acer\Desktop\82646\Exam2_Raul_Ramos\Exam2_Raul_Ramos\obj\Debug\Exam2_Raul_Ramos.pdb
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.csproj.GenerateResource.cache
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.csprojAssemblyReference.cache
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.exe
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.Form1.resources
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.pdb
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/Exam2_Raul_Ramos.Properties.Resources.resources
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/obj/Debug/TempPE/restaurantDataSet.Designer.cs.dll
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Exam2_Raul_Ramos
{
static class Program
{
///
/// The main entry point for the application.
/// [STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
82646Updated/Exam2_Raul_Ramos/Exam2_Raul_Ramos/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("Exam2_Raul_Ramos")]
[assembly: AssemblyDescription("")]
[assembly:...