Complete MP4

This commit is contained in:
Chloe Fontenot 🏳️‍⚧️ 2022-11-17 21:59:26 -06:00
parent 2be3b984a3
commit fcd09d2dc3
1041 changed files with 35 additions and 2540 deletions

Binary file not shown.

Binary file not shown.

View File

@ -318,6 +318,7 @@
this.clearButton.TabIndex = 6; this.clearButton.TabIndex = 6;
this.clearButton.Text = "Clear"; this.clearButton.Text = "Clear";
this.clearButton.UseVisualStyleBackColor = true; this.clearButton.UseVisualStyleBackColor = true;
this.clearButton.Click += new System.EventHandler(this.clearButton_Click);
// //
// exitButton // exitButton
// //
@ -327,6 +328,7 @@
this.exitButton.TabIndex = 7; this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit"; this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true; this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
// //
// Form1 // Form1
// //

View File

@ -62,8 +62,7 @@ namespace JoesAutomotive_CalebFontenot
} }
private decimal TaxCharges() private decimal TaxCharges()
{ {
decimal total = 0m; decimal.TryParse(partsInputTextBox.Text, out decimal total);
total = MiscCharges(total);
decimal tax = total * 0.06m; decimal tax = total * 0.06m;
return tax; return tax;
} }
@ -82,8 +81,34 @@ namespace JoesAutomotive_CalebFontenot
// Set textboxes // Set textboxes
servicesAndLaborTextBox.Text = total.ToString("c"); servicesAndLaborTextBox.Text = total.ToString("c");
totalFeesTextBox.Text = (total + tax + outputOtherCharges).ToString("c"); totalFeesTextBox.Text = (total + tax).ToString("c");
taxTextBox.Text = tax.ToString("c"); taxTextBox.Text = tax.ToString("c");
partsTextBox.Text = partsInputTextBox.Text;
}
private void exitButton_Click(object sender, EventArgs e)
{
Close();
}
private void clearButton_Click(object sender, EventArgs e)
{
// Clear EVERYTHING
servicesAndLaborTextBox.Text = "";
partsTextBox.Text = "";
partsInputTextBox.Text = "";
taxTextBox.Text = "";
totalFeesTextBox.Text = "";
laborInputTextBox.Text = "";
// Now for the checkboxes.
oilChangeCheckBox.Checked = false;
lubeJobCheckBox.Checked = false;
radiatorFlushCheckBox.Checked = false;
transmissionFlushCheckBox.Checked = false;
inspectionCheckBox.Checked = false;
replaceMufflerCheckBox.Checked = false;
tireRotationCheckBox.Checked = false;
} }
} }

BIN
MP4/RPS_CalebFontenot.pdf Normal file

Binary file not shown.

BIN
MP4/RPS_CalebFontenot.zip Normal file

Binary file not shown.

View File

@ -199,14 +199,9 @@ namespace RCS_CalebFontenot
private void rockPictureBox_Click(object sender, EventArgs e) private void rockPictureBox_Click(object sender, EventArgs e)
{ {
statusLabel.Text = "You clicked Rock!";
playRound(0); playRound(0);
} }
private void exitButton_Click(object sender, EventArgs e)
{
this.Close();
}
private void paperPictureBox_Click(object sender, EventArgs e) private void paperPictureBox_Click(object sender, EventArgs e)
{ {
@ -217,5 +212,9 @@ namespace RCS_CalebFontenot
{ {
playRound(2); playRound(2);
} }
private void exitButton_Click(object sender, EventArgs e)
{
this.Close();
}
} }
} }

View File

@ -1,23 +0,0 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"RCS_CalebFontenot/1.0.0": {
"runtime": {
"RCS_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"RCS_CalebFontenot/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@ -1,18 +0,0 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}

View File

@ -1,18 +0,0 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"includedFrameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
}
}
}

Some files were not shown because too many files have changed in this diff Show More