Lab 3_1
This commit is contained in:
parent
4b176b99a0
commit
bdffd2204f
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/.vs/Lab3_1_CalebFontenot/v17/.suo
Executable file
BIN
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/.vs/Lab3_1_CalebFontenot/v17/.suo
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
185
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Form1.Designer.cs
generated
Executable file
185
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Form1.Designer.cs
generated
Executable file
@ -0,0 +1,185 @@
|
|||||||
|
namespace Lab3_1_CalebFontenot
|
||||||
|
{
|
||||||
|
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.dayOfWeekTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.monthTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.dayOfMonthTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.yearTextBox = new System.Windows.Forms.TextBox();
|
||||||
|
this.dayOfWeekPromptLabel = new System.Windows.Forms.Label();
|
||||||
|
this.monthPromptLabel = new System.Windows.Forms.Label();
|
||||||
|
this.label2 = new System.Windows.Forms.Label();
|
||||||
|
this.yearPromptLabel = new System.Windows.Forms.Label();
|
||||||
|
this.dateOutputLabel = new System.Windows.Forms.TextBox();
|
||||||
|
this.showDateButton = new System.Windows.Forms.Button();
|
||||||
|
this.clearButton = new System.Windows.Forms.Button();
|
||||||
|
this.exitButton = new System.Windows.Forms.Button();
|
||||||
|
this.SuspendLayout();
|
||||||
|
//
|
||||||
|
// dayOfWeekTextBox
|
||||||
|
//
|
||||||
|
this.dayOfWeekTextBox.Location = new System.Drawing.Point(219, 12);
|
||||||
|
this.dayOfWeekTextBox.Name = "dayOfWeekTextBox";
|
||||||
|
this.dayOfWeekTextBox.Size = new System.Drawing.Size(153, 23);
|
||||||
|
this.dayOfWeekTextBox.TabIndex = 0;
|
||||||
|
//
|
||||||
|
// monthTextBox
|
||||||
|
//
|
||||||
|
this.monthTextBox.Location = new System.Drawing.Point(219, 52);
|
||||||
|
this.monthTextBox.Name = "monthTextBox";
|
||||||
|
this.monthTextBox.Size = new System.Drawing.Size(153, 23);
|
||||||
|
this.monthTextBox.TabIndex = 1;
|
||||||
|
//
|
||||||
|
// dayOfMonthTextBox
|
||||||
|
//
|
||||||
|
this.dayOfMonthTextBox.Location = new System.Drawing.Point(219, 96);
|
||||||
|
this.dayOfMonthTextBox.Name = "dayOfMonthTextBox";
|
||||||
|
this.dayOfMonthTextBox.Size = new System.Drawing.Size(153, 23);
|
||||||
|
this.dayOfMonthTextBox.TabIndex = 2;
|
||||||
|
//
|
||||||
|
// yearTextBox
|
||||||
|
//
|
||||||
|
this.yearTextBox.Location = new System.Drawing.Point(219, 142);
|
||||||
|
this.yearTextBox.Name = "yearTextBox";
|
||||||
|
this.yearTextBox.Size = new System.Drawing.Size(153, 23);
|
||||||
|
this.yearTextBox.TabIndex = 3;
|
||||||
|
//
|
||||||
|
// dayOfWeekPromptLabel
|
||||||
|
//
|
||||||
|
this.dayOfWeekPromptLabel.AutoSize = true;
|
||||||
|
this.dayOfWeekPromptLabel.Location = new System.Drawing.Point(70, 15);
|
||||||
|
this.dayOfWeekPromptLabel.Name = "dayOfWeekPromptLabel";
|
||||||
|
this.dayOfWeekPromptLabel.Size = new System.Drawing.Size(143, 15);
|
||||||
|
this.dayOfWeekPromptLabel.TabIndex = 4;
|
||||||
|
this.dayOfWeekPromptLabel.Text = "Enter the day of the week:";
|
||||||
|
//
|
||||||
|
// monthPromptLabel
|
||||||
|
//
|
||||||
|
this.monthPromptLabel.AutoSize = true;
|
||||||
|
this.monthPromptLabel.Location = new System.Drawing.Point(50, 55);
|
||||||
|
this.monthPromptLabel.Name = "monthPromptLabel";
|
||||||
|
this.monthPromptLabel.Size = new System.Drawing.Size(163, 15);
|
||||||
|
this.monthPromptLabel.TabIndex = 5;
|
||||||
|
this.monthPromptLabel.Text = "Enter the name of the month:";
|
||||||
|
//
|
||||||
|
// label2
|
||||||
|
//
|
||||||
|
this.label2.AutoSize = true;
|
||||||
|
this.label2.Location = new System.Drawing.Point(14, 99);
|
||||||
|
this.label2.Name = "label2";
|
||||||
|
this.label2.Size = new System.Drawing.Size(199, 15);
|
||||||
|
this.label2.TabIndex = 6;
|
||||||
|
this.label2.Text = "Enter the numeric day of the month:";
|
||||||
|
//
|
||||||
|
// yearPromptLabel
|
||||||
|
//
|
||||||
|
this.yearPromptLabel.AutoSize = true;
|
||||||
|
this.yearPromptLabel.Location = new System.Drawing.Point(131, 145);
|
||||||
|
this.yearPromptLabel.Name = "yearPromptLabel";
|
||||||
|
this.yearPromptLabel.Size = new System.Drawing.Size(82, 15);
|
||||||
|
this.yearPromptLabel.TabIndex = 7;
|
||||||
|
this.yearPromptLabel.Text = "Enter the year:";
|
||||||
|
//
|
||||||
|
// dateOutputLabel
|
||||||
|
//
|
||||||
|
this.dateOutputLabel.Location = new System.Drawing.Point(12, 194);
|
||||||
|
this.dateOutputLabel.Name = "dateOutputLabel";
|
||||||
|
this.dateOutputLabel.Size = new System.Drawing.Size(360, 23);
|
||||||
|
this.dateOutputLabel.TabIndex = 8;
|
||||||
|
//
|
||||||
|
// showDateButton
|
||||||
|
//
|
||||||
|
this.showDateButton.Location = new System.Drawing.Point(31, 223);
|
||||||
|
this.showDateButton.Name = "showDateButton";
|
||||||
|
this.showDateButton.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.showDateButton.TabIndex = 9;
|
||||||
|
this.showDateButton.Text = "Show Date";
|
||||||
|
this.showDateButton.UseVisualStyleBackColor = true;
|
||||||
|
this.showDateButton.Click += new System.EventHandler(this.showDateButton_Click);
|
||||||
|
//
|
||||||
|
// clearButton
|
||||||
|
//
|
||||||
|
this.clearButton.Location = new System.Drawing.Point(149, 223);
|
||||||
|
this.clearButton.Name = "clearButton";
|
||||||
|
this.clearButton.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.clearButton.TabIndex = 10;
|
||||||
|
this.clearButton.Text = "Clear";
|
||||||
|
this.clearButton.UseVisualStyleBackColor = true;
|
||||||
|
this.clearButton.Click += new System.EventHandler(this.ClearButton_Click);
|
||||||
|
//
|
||||||
|
// exitButton
|
||||||
|
//
|
||||||
|
this.exitButton.Location = new System.Drawing.Point(265, 223);
|
||||||
|
this.exitButton.Name = "exitButton";
|
||||||
|
this.exitButton.Size = new System.Drawing.Size(75, 23);
|
||||||
|
this.exitButton.TabIndex = 11;
|
||||||
|
this.exitButton.Text = "Exit";
|
||||||
|
this.exitButton.UseVisualStyleBackColor = true;
|
||||||
|
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
|
||||||
|
//
|
||||||
|
// Form1
|
||||||
|
//
|
||||||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(389, 259);
|
||||||
|
this.Controls.Add(this.exitButton);
|
||||||
|
this.Controls.Add(this.clearButton);
|
||||||
|
this.Controls.Add(this.showDateButton);
|
||||||
|
this.Controls.Add(this.dateOutputLabel);
|
||||||
|
this.Controls.Add(this.yearPromptLabel);
|
||||||
|
this.Controls.Add(this.label2);
|
||||||
|
this.Controls.Add(this.monthPromptLabel);
|
||||||
|
this.Controls.Add(this.dayOfWeekPromptLabel);
|
||||||
|
this.Controls.Add(this.yearTextBox);
|
||||||
|
this.Controls.Add(this.dayOfMonthTextBox);
|
||||||
|
this.Controls.Add(this.monthTextBox);
|
||||||
|
this.Controls.Add(this.dayOfWeekTextBox);
|
||||||
|
this.Name = "Form1";
|
||||||
|
this.Text = "Form1";
|
||||||
|
this.ResumeLayout(false);
|
||||||
|
this.PerformLayout();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
private TextBox dayOfWeekTextBox;
|
||||||
|
private TextBox monthTextBox;
|
||||||
|
private TextBox dayOfMonthTextBox;
|
||||||
|
private TextBox yearTextBox;
|
||||||
|
private Label dayOfWeekPromptLabel;
|
||||||
|
private Label monthPromptLabel;
|
||||||
|
private Label label2;
|
||||||
|
private Label yearPromptLabel;
|
||||||
|
private TextBox dateOutputLabel;
|
||||||
|
private Button showDateButton;
|
||||||
|
private Button clearButton;
|
||||||
|
private Button exitButton;
|
||||||
|
}
|
||||||
|
}
|
43
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Form1.cs
Executable file
43
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Form1.cs
Executable file
@ -0,0 +1,43 @@
|
|||||||
|
namespace Lab3_1_CalebFontenot
|
||||||
|
{
|
||||||
|
public partial class Form1 : Form
|
||||||
|
{
|
||||||
|
public Form1()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showDateButton_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
// Declare a string variable:
|
||||||
|
string output;
|
||||||
|
|
||||||
|
// Concatenate the input and build the output string.
|
||||||
|
output = dayOfWeekTextBox.Text +", "
|
||||||
|
+ monthTextBox.Text + " " +
|
||||||
|
dayOfMonthTextBox.Text + ", " +
|
||||||
|
yearTextBox.Text;
|
||||||
|
|
||||||
|
// Display the output string in the Label control.
|
||||||
|
dateOutputLabel.Text = output;
|
||||||
|
}
|
||||||
|
private void ClearButton_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
// Clear the Textboxes.
|
||||||
|
dayOfWeekTextBox.Text = "";
|
||||||
|
monthTextBox.Text = "";
|
||||||
|
dayOfMonthTextBox.Text = "";
|
||||||
|
yearTextBox.Text = "";
|
||||||
|
|
||||||
|
// Clear the dateOutputLabel control.
|
||||||
|
dateOutputLabel.Text = "";
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void exitButton_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
// Close the form.
|
||||||
|
this.Close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
60
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Form1.resx
Executable file
60
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Form1.resx
Executable file
@ -0,0 +1,60 @@
|
|||||||
|
<root>
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
11
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Lab3_1_CalebFontenot.csproj
Executable file
11
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Lab3_1_CalebFontenot.csproj
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Update="Form1.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
25
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Lab3_1_CalebFontenot.sln
Executable file
25
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Lab3_1_CalebFontenot.sln
Executable file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.3.32804.467
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lab3_1_CalebFontenot", "Lab3_1_CalebFontenot.csproj", "{C173F38E-F2CE-4BBE-9C1E-20E51FD69788}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{C173F38E-F2CE-4BBE-9C1E-20E51FD69788}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C173F38E-F2CE-4BBE-9C1E-20E51FD69788}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C173F38E-F2CE-4BBE-9C1E-20E51FD69788}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C173F38E-F2CE-4BBE-9C1E-20E51FD69788}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {716A61AB-8794-4E81-9345-08C456C8A36D}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
17
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Program.cs
Executable file
17
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/Program.cs
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
namespace Lab3_1_CalebFontenot
|
||||||
|
{
|
||||||
|
internal static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The main entry point for the application.
|
||||||
|
/// </summary>
|
||||||
|
[STAThread]
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
|
// see https://aka.ms/applicationconfiguration.
|
||||||
|
ApplicationConfiguration.Initialize();
|
||||||
|
Application.Run(new Form1());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {
|
||||||
|
"Lab3_1_CalebFontenot/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Lab3_1_CalebFontenot.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Lab3_1_CalebFontenot/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <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>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Lab3_1_CalebFontenot")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Lab3_1_CalebFontenot")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Lab3_1_CalebFontenot")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
0156c5d882fa26a041deb3b0f95f9245c9270a32
|
Binary file not shown.
@ -0,0 +1,16 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.ApplicationManifest =
|
||||||
|
build_property.StartupObject =
|
||||||
|
build_property.ApplicationDefaultFont =
|
||||||
|
build_property.ApplicationHighDpiMode =
|
||||||
|
build_property.ApplicationUseCompatibleTextRendering =
|
||||||
|
build_property.ApplicationVisualStyles =
|
||||||
|
build_property.TargetFramework = net6.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Lab3_1_CalebFontenot
|
||||||
|
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\
|
@ -0,0 +1,10 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Drawing;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
|
global using global::System.Windows.Forms;
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
f82333b53b09670e44e41c0f1aa620f931399bc8
|
@ -0,0 +1,17 @@
|
|||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\bin\Debug\net6.0-windows\Lab3_1_CalebFontenot.exe
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\bin\Debug\net6.0-windows\Lab3_1_CalebFontenot.deps.json
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\bin\Debug\net6.0-windows\Lab3_1_CalebFontenot.runtimeconfig.json
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\bin\Debug\net6.0-windows\Lab3_1_CalebFontenot.dll
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\bin\Debug\net6.0-windows\Lab3_1_CalebFontenot.pdb
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.csproj.AssemblyReference.cache
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.Form1.resources
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.csproj.GenerateResource.cache
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.AssemblyInfoInputs.cache
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.AssemblyInfo.cs
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.csproj.CoreCompileInputs.cache
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.dll
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\refint\Lab3_1_CalebFontenot.dll
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.pdb
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\Lab3_1_CalebFontenot.genruntimeconfig.cache
|
||||||
|
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_1_CalebFontenot\Lab3_1_CalebFontenot\obj\Debug\net6.0-windows\ref\Lab3_1_CalebFontenot.dll
|
Binary file not shown.
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {}
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\caleb\\.nuget\\packages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
a161549c3a8ce50ac6b55d09b0639b93d7c483a9
|
Binary file not shown.
BIN
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
BIN
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/obj/Debug/net6.0-windows/apphost.exe
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,66 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj",
|
||||||
|
"projectName": "Lab3_1_CalebFontenot",
|
||||||
|
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||||
|
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0-windows"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App.WindowsForms": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\caleb\.nuget\packages\</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\caleb\.nuget\packages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
71
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/obj/project.assets.json
Executable file
71
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/obj/project.assets.json
Executable file
@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"targets": {
|
||||||
|
"net6.0-windows7.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {},
|
||||||
|
"projectFileDependencyGroups": {
|
||||||
|
"net6.0-windows7.0": []
|
||||||
|
},
|
||||||
|
"packageFolders": {
|
||||||
|
"C:\\Users\\caleb\\.nuget\\packages\\": {}
|
||||||
|
},
|
||||||
|
"project": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj",
|
||||||
|
"projectName": "Lab3_1_CalebFontenot",
|
||||||
|
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
|
||||||
|
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net6.0-windows"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net6.0-windows7.0": {
|
||||||
|
"targetAlias": "net6.0-windows",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App.WindowsForms": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
8
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/obj/project.nuget.cache
Executable file
8
Lab3_1_CalebFontenot/Lab3_1_CalebFontenot/obj/project.nuget.cache
Executable file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"dgSpecHash": "4meZA6mIqj8eqkrG5K5w3Q/mcEgBUyaUqp2GwnhkMOrmPklPBY3tt7GfQjv/JsP90GzxMZsV46GxOHK5ljqvhQ==",
|
||||||
|
"success": true,
|
||||||
|
"projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot\\Lab3_1_CalebFontenot.csproj",
|
||||||
|
"expectedPackageFiles": [],
|
||||||
|
"logs": []
|
||||||
|
}
|
BIN
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/.vs/Lab3_2_CalebFontenot/v17/.suo
Executable file
BIN
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/.vs/Lab3_2_CalebFontenot/v17/.suo
Executable file
Binary file not shown.
39
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Form1.Designer.cs
generated
Executable file
39
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Form1.Designer.cs
generated
Executable file
@ -0,0 +1,39 @@
|
|||||||
|
namespace Lab3_2_CalebFontenot
|
||||||
|
{
|
||||||
|
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.components = new System.ComponentModel.Container();
|
||||||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
|
this.ClientSize = new System.Drawing.Size(800, 450);
|
||||||
|
this.Text = "Form1";
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
}
|
||||||
|
}
|
10
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Form1.cs
Executable file
10
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Form1.cs
Executable file
@ -0,0 +1,10 @@
|
|||||||
|
namespace Lab3_2_CalebFontenot
|
||||||
|
{
|
||||||
|
public partial class Form1 : Form
|
||||||
|
{
|
||||||
|
public Form1()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Lab3_2_CalebFontenot.csproj
Executable file
11
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Lab3_2_CalebFontenot.csproj
Executable file
@ -0,0 +1,11 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net6.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWindowsForms>true</UseWindowsForms>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Update="Form1.cs">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
25
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Lab3_2_CalebFontenot.sln
Executable file
25
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Lab3_2_CalebFontenot.sln
Executable file
@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.3.32804.467
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lab3_2_CalebFontenot", "Lab3_2_CalebFontenot.csproj", "{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {CAD245AC-3831-4304-B9B6-D0B437529720}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
17
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Program.cs
Executable file
17
Lab3_2_CalebFontenot/Lab3_2_CalebFontenot/Program.cs
Executable file
@ -0,0 +1,17 @@
|
|||||||
|
namespace Lab3_2_CalebFontenot
|
||||||
|
{
|
||||||
|
internal static class Program
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The main entry point for the application.
|
||||||
|
/// </summary>
|
||||||
|
[STAThread]
|
||||||
|
static void Main()
|
||||||
|
{
|
||||||
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
|
// see https://aka.ms/applicationconfiguration.
|
||||||
|
ApplicationConfiguration.Initialize();
|
||||||
|
Application.Run(new Form1());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user