diff --git a/The Not So Fancy Calculator/ApplicationEvents.vb b/The Not So Fancy Calculator/ApplicationEvents.vb new file mode 100644 index 0000000..f9974e1 --- /dev/null +++ b/The Not So Fancy Calculator/ApplicationEvents.vb @@ -0,0 +1,29 @@ +Imports Microsoft.VisualBasic.ApplicationServices + +Namespace My + ' The following events are available for MyApplication: + ' Startup: Raised when the application starts, before the startup form is created. + ' Shutdown: Raised after all application forms are closed. This event is not raised if the application terminates abnormally. + ' UnhandledException: Raised if the application encounters an unhandled exception. + ' StartupNextInstance: Raised when launching a single-instance application and the application is already active. + ' NetworkAvailabilityChanged: Raised when the network connection is connected or disconnected. + + ' **NEW** ApplyApplicationDefaults: Raised when the application queries default values to be set for the application. + + ' Example: + ' Private Sub MyApplication_ApplyApplicationDefaults(sender As Object, e As ApplyApplicationDefaultsEventArgs) Handles Me.ApplyApplicationDefaults + ' + ' ' Setting the application-wide default Font: + ' e.Font = New Font(FontFamily.GenericSansSerif, 12, FontStyle.Regular) + ' + ' ' Setting the HighDpiMode for the Application: + ' e.HighDpiMode = HighDpiMode.PerMonitorV2 + ' + ' ' If a splash dialog is used, this sets the minimum display time: + ' e.MinimumSplashScreenDisplayTime = 4000 + ' End Sub + + Partial Friend Class MyApplication + + End Class +End Namespace diff --git a/The Not So Fancy Calculator/Form1.Designer.vb b/The Not So Fancy Calculator/Form1.Designer.vb new file mode 100644 index 0000000..f463761 --- /dev/null +++ b/The Not So Fancy Calculator/Form1.Designer.vb @@ -0,0 +1,112 @@ + +Partial Class Form1 + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + + Private Sub InitializeComponent() + TextBox1 = New TextBox() + Button1 = New Button() + Button2 = New Button() + LB1 = New CheckedListBox() + donebox = New CheckBox() + Label1 = New Label() + SuspendLayout() + ' + ' TextBox1 + ' + TextBox1.Location = New Point(64, 136) + TextBox1.Name = "TextBox1" + TextBox1.Size = New Size(160, 23) + TextBox1.TabIndex = 1 + ' + ' Button1 + ' + Button1.Font = New Font("Segoe UI", 9F) + Button1.Location = New Point(224, 128) + Button1.Name = "Button1" + Button1.Size = New Size(40, 40) + Button1.TabIndex = 2 + Button1.Text = "Add Item" + Button1.UseVisualStyleBackColor = True + ' + ' Button2 + ' + Button2.Location = New Point(296, 200) + Button2.Name = "Button2" + Button2.Size = New Size(75, 40) + Button2.TabIndex = 3 + Button2.Text = "Clear list" + Button2.UseVisualStyleBackColor = True + ' + ' LB1 + ' + LB1.FormattingEnabled = True + LB1.Location = New Point(32, 200) + LB1.Name = "LB1" + LB1.Size = New Size(264, 166) + LB1.TabIndex = 4 + ' + ' donebox + ' + donebox.AutoSize = True + donebox.Location = New Point(72, 368) + donebox.Name = "donebox" + donebox.Size = New Size(201, 19) + donebox.TabIndex = 5 + donebox.Text = "I Did Everything On The Checklist" + donebox.UseVisualStyleBackColor = True + ' + ' Label1 + ' + Label1.AutoSize = True + Label1.BorderStyle = BorderStyle.FixedSingle + Label1.Font = New Font("Segoe Script", 18F, FontStyle.Italic, GraphicsUnit.Point, CByte(0)) + Label1.Location = New Point(8, 16) + Label1.Name = "Label1" + Label1.Size = New Size(366, 40) + Label1.TabIndex = 6 + Label1.Text = "The Not So Fancy Checklist" + ' + ' Form1 + ' + AutoScaleDimensions = New SizeF(7F, 15F) + AutoScaleMode = AutoScaleMode.Font + BackColor = SystemColors.ControlDark + ClientSize = New Size(378, 537) + Controls.Add(Label1) + Controls.Add(donebox) + Controls.Add(LB1) + Controls.Add(Button2) + Controls.Add(Button1) + Controls.Add(TextBox1) + Name = "Form1" + Text = "The Not So Fancy Checklist" + ResumeLayout(False) + PerformLayout() + End Sub + Friend WithEvents TextBox1 As TextBox + Friend WithEvents Button1 As Button + Friend WithEvents Button2 As Button + Friend WithEvents LB1 As CheckedListBox + Friend WithEvents donebox As CheckBox + Friend WithEvents Label1 As Label + +End Class diff --git a/The Not So Fancy Calculator/Form1.resx b/The Not So Fancy Calculator/Form1.resx new file mode 100644 index 0000000..b92c163 --- /dev/null +++ b/The Not So Fancy Calculator/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + \ No newline at end of file diff --git a/The Not So Fancy Calculator/Form1.vb b/The Not So Fancy Calculator/Form1.vb new file mode 100644 index 0000000..565953f --- /dev/null +++ b/The Not So Fancy Calculator/Form1.vb @@ -0,0 +1,74 @@ +Imports System.IO +Imports System.Media + +Public Class Form1 + Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click + Dim sound As New SoundPlayer("create.wav") + If TextBox1.Text <> "" Then + Try + sound.Play() + LB1.Items.Add(TextBox1.Text) + File.AppendAllText("list", TextBox1.Text & " +") + TextBox1.Clear() + Catch + End Try + End If + + End Sub + Private Sub donebox_CheckedChanged(sender As Object, e As EventArgs) Handles donebox.CheckedChanged + If donebox.Checked = True Then + If LB1.Items.Count <> LB1.CheckedItems.Count Then + Try + donebox.Checked = False + MessageBox.Show("You can't check this until you check evertyhing else") + Catch + End Try + Else + MessageBox.Show("Yay! you did it!") + Try + LB1.Items.Clear() + File.Delete("list") + Catch + End Try + End If + End If + End Sub + Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click + Try + LB1.Items.Clear() + File.Delete("list") + Catch + End Try + End Sub + Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load + Try + Dim lines() As String = File.ReadAllLines("list") + For Each line As String In lines + If Not String.IsNullOrWhiteSpace(line) Then + LB1.Items.Add(line) + End If + Next + Catch + End Try + End Sub + + + + Private Sub LB1_ItemCheck(sender As Object, e As ItemCheckEventArgs) Handles LB1.ItemCheck + Try + Dim check As New SoundPlayer("check.wav") + check.Play() + Dim itemText As String = LB1.Items(e.Index).ToString() + + If e.NewValue = CheckState.Unchecked Then + + Dim uncheck As New SoundPlayer("uncheck.wav") + uncheck.Play() + End If + Catch + End Try + + End Sub + +End Class diff --git a/The Not So Fancy Calculator/My Project/Application.Designer.vb b/The Not So Fancy Calculator/My Project/Application.Designer.vb new file mode 100644 index 0000000..eb33ae6 --- /dev/null +++ b/The Not So Fancy Calculator/My Project/Application.Designer.vb @@ -0,0 +1,37 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict On +Option Explicit On + +Namespace My + + 'NOTE: This file is auto-generated; do not modify it directly. To make changes, + ' or if you encounter build errors in this file, go to the Project Designer + ' (go to Project Properties or double-click the My Project node in + ' Solution Explorer), and make changes on the Application tab. + ' + Partial Friend Class MyApplication + + + Public Sub New() + MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) + Me.IsSingleInstance = False + Me.EnableVisualStyles = True + Me.SaveMySettingsOnExit = True + Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses + End Sub + + + Protected Overrides Sub OnCreateMainForm() + Me.MainForm = Form1 + End Sub + End Class +End Namespace diff --git a/The Not So Fancy Calculator/My Project/Application.myapp b/The Not So Fancy Calculator/My Project/Application.myapp new file mode 100644 index 0000000..fbb5858 --- /dev/null +++ b/The Not So Fancy Calculator/My Project/Application.myapp @@ -0,0 +1,10 @@ + + + true + Form1 + false + 0 + true + 0 + true + \ No newline at end of file diff --git a/The Not So Fancy Calculator/Week 9.sln b/The Not So Fancy Calculator/Week 9.sln new file mode 100644 index 0000000..11e93eb --- /dev/null +++ b/The Not So Fancy Calculator/Week 9.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.10.35122.118 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{778DAE3C-4631-46EA-AA77-85C1314464D9}") = "Week 9", "Week 9.vbproj", "{8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Android|Any CPU = Android|Any CPU + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}.Android|Any CPU.ActiveCfg = Debug|Any CPU + {8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}.Android|Any CPU.Build.0 = Debug|Any CPU + {8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8B4DFFBA-F858-4D7F-9D40-BCBCBD2A53FF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {4C382006-0089-4758-AE89-804D9BE8772D} + EndGlobalSection +EndGlobal diff --git a/The Not So Fancy Calculator/Week 9.vbproj b/The Not So Fancy Calculator/Week 9.vbproj new file mode 100644 index 0000000..acd9154 --- /dev/null +++ b/The Not So Fancy Calculator/Week 9.vbproj @@ -0,0 +1,34 @@ + + + + WinExe + net8.0-windows + Week_9 + Sub Main + true + WindowsForms + Debug;Release;Android + + + + + + + + + + + True + True + Application.myapp + + + + + + MyApplicationCodeGenerator + Application.Designer.vb + + + + \ No newline at end of file diff --git a/The Not So Fancy Calculator/Week 9.vbproj.user b/The Not So Fancy Calculator/Week 9.vbproj.user new file mode 100644 index 0000000..c392cf0 --- /dev/null +++ b/The Not So Fancy Calculator/Week 9.vbproj.user @@ -0,0 +1,8 @@ + + + + + Form + + + diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.deps.json b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.deps.json new file mode 100644 index 0000000..3a21553 --- /dev/null +++ b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Week 9/1.0.0": { + "runtime": { + "Week 9.dll": {} + } + } + } + }, + "libraries": { + "Week 9/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.dll b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.dll new file mode 100644 index 0000000..7f74cc6 Binary files /dev/null and b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.dll differ diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.exe b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.exe new file mode 100644 index 0000000..844f207 Binary files /dev/null and b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.exe differ diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.pdb b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.pdb new file mode 100644 index 0000000..0045747 Binary files /dev/null and b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.pdb differ diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.runtimeconfig.json b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.runtimeconfig.json new file mode 100644 index 0000000..afe0d04 --- /dev/null +++ b/The Not So Fancy Calculator/bin/Release/net8.0-windows/Week 9.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true + } + } +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/check.wav b/The Not So Fancy Calculator/bin/Release/net8.0-windows/check.wav new file mode 100644 index 0000000..0075d1a Binary files /dev/null and b/The Not So Fancy Calculator/bin/Release/net8.0-windows/check.wav differ diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/create.wav b/The Not So Fancy Calculator/bin/Release/net8.0-windows/create.wav new file mode 100644 index 0000000..34cbc37 Binary files /dev/null and b/The Not So Fancy Calculator/bin/Release/net8.0-windows/create.wav differ diff --git a/The Not So Fancy Calculator/bin/Release/net8.0-windows/uncheck.wav b/The Not So Fancy Calculator/bin/Release/net8.0-windows/uncheck.wav new file mode 100644 index 0000000..04d2e00 Binary files /dev/null and b/The Not So Fancy Calculator/bin/Release/net8.0-windows/uncheck.wav differ diff --git a/The Not So Fancy Calculator/check.wav b/The Not So Fancy Calculator/check.wav new file mode 100644 index 0000000..0075d1a Binary files /dev/null and b/The Not So Fancy Calculator/check.wav differ diff --git a/The Not So Fancy Calculator/create.wav b/The Not So Fancy Calculator/create.wav new file mode 100644 index 0000000..34cbc37 Binary files /dev/null and b/The Not So Fancy Calculator/create.wav differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.AssemblyInfo.vb b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.AssemblyInfo.vb new file mode 100644 index 0000000..146a07e --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.AssemblyInfo.vb @@ -0,0 +1,26 @@ +'------------------------------------------------------------------------------ +' +' 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. +' +'------------------------------------------------------------------------------ + +Option Strict Off +Option Explicit On + +Imports System +Imports System.Reflection + + +'Generated by the MSBuild WriteCodeFragment class. diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.AssemblyInfoInputs.cache b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e6bcd04 --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0837ff1c9193c26ca60cf904f116cc94d8343aaf927e85802accbac4be1499c2 diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.GeneratedMSBuildEditorConfig.editorconfig b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4de7a07 --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.ApplicationManifest = +build_property.StartupObject = Sub Main +build_property.ApplicationDefaultFont = +build_property.ApplicationHighDpiMode = +build_property.ApplicationUseCompatibleTextRendering = +build_property.ApplicationVisualStyles = +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Week_9 +build_property.ProjectDir = C:\Users\jamil\source\repos\Week 9\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.assets.cache b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.assets.cache new file mode 100644 index 0000000..11fe900 Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.assets.cache differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.designer.deps.json b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.designer.deps.json new file mode 100644 index 0000000..8e9be8a --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.designer.deps.json @@ -0,0 +1,11 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": {} + }, + "libraries": {} +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.designer.runtimeconfig.json b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.designer.runtimeconfig.json new file mode 100644 index 0000000..99ae4fe --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.designer.runtimeconfig.json @@ -0,0 +1,25 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.WindowsDesktop.App", + "version": "8.0.0" + } + ], + "additionalProbingPaths": [ + "C:\\Users\\jamil\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\jamil\\.nuget\\packages", + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true, + "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true + } + } +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.dll b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.dll new file mode 100644 index 0000000..7f74cc6 Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.dll differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.genruntimeconfig.cache b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.genruntimeconfig.cache new file mode 100644 index 0000000..ec917a5 --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.genruntimeconfig.cache @@ -0,0 +1 @@ +26bc4ae3df38149e0bbeabfce5aae701ede7983b3aa3016052aac2461e906e5a diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.pdb b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.pdb new file mode 100644 index 0000000..0045747 Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.pdb differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.BuildWithSkipAnalyzers b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.CoreCompileInputs.cache b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1c2644f --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +85e9db6d87002aa70dd923783f15c29e3136719fe4e3bbeadacfd4f728043df8 diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.FileListAbsolute.txt b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.FileListAbsolute.txt new file mode 100644 index 0000000..8be814a --- /dev/null +++ b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.FileListAbsolute.txt @@ -0,0 +1,16 @@ +C:\Users\jamil\source\repos\Week 9\bin\Release\net8.0-windows\Week 9.exe +C:\Users\jamil\source\repos\Week 9\bin\Release\net8.0-windows\Week 9.deps.json +C:\Users\jamil\source\repos\Week 9\bin\Release\net8.0-windows\Week 9.runtimeconfig.json +C:\Users\jamil\source\repos\Week 9\bin\Release\net8.0-windows\Week 9.dll +C:\Users\jamil\source\repos\Week 9\bin\Release\net8.0-windows\Week 9.pdb +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week_9.Form1.resources +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.vbproj.GenerateResource.cache +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.AssemblyInfoInputs.cache +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.AssemblyInfo.vb +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.vbproj.CoreCompileInputs.cache +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.dll +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\refint\Week 9.dll +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.pdb +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\Week 9.genruntimeconfig.cache +C:\Users\jamil\source\repos\Week 9\obj\Release\net8.0-windows\ref\Week 9.dll diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.GenerateResource.cache b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.GenerateResource.cache new file mode 100644 index 0000000..797d6f0 Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week 9.vbproj.GenerateResource.cache differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week_9.Form1.resources b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week_9.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/Week_9.Form1.resources differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/apphost.exe b/The Not So Fancy Calculator/obj/Release/net8.0-windows/apphost.exe new file mode 100644 index 0000000..844f207 Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/apphost.exe differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/ref/Week 9.dll b/The Not So Fancy Calculator/obj/Release/net8.0-windows/ref/Week 9.dll new file mode 100644 index 0000000..a87844e Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/ref/Week 9.dll differ diff --git a/The Not So Fancy Calculator/obj/Release/net8.0-windows/refint/Week 9.dll b/The Not So Fancy Calculator/obj/Release/net8.0-windows/refint/Week 9.dll new file mode 100644 index 0000000..a87844e Binary files /dev/null and b/The Not So Fancy Calculator/obj/Release/net8.0-windows/refint/Week 9.dll differ diff --git a/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.dgspec.json b/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.dgspec.json new file mode 100644 index 0000000..5739d00 --- /dev/null +++ b/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.dgspec.json @@ -0,0 +1,76 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj": {} + }, + "projects": { + "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj", + "projectName": "Week 9", + "projectPath": "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj", + "packagesPath": "C:\\Users\\jamil\\.nuget\\packages\\", + "outputPath": "C:\\Users\\jamil\\source\\repos\\Week 9\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\jamil\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.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\\8.0.303/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.g.props b/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.g.props new file mode 100644 index 0000000..1338756 --- /dev/null +++ b/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.g.props @@ -0,0 +1,16 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\jamil\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.10.2 + + + + + + \ No newline at end of file diff --git a/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.g.targets b/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/The Not So Fancy Calculator/obj/Week 9.vbproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/The Not So Fancy Calculator/obj/project.assets.json b/The Not So Fancy Calculator/obj/project.assets.json new file mode 100644 index 0000000..88242e7 --- /dev/null +++ b/The Not So Fancy Calculator/obj/project.assets.json @@ -0,0 +1,82 @@ +{ + "version": 3, + "targets": { + "net8.0-windows7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0-windows7.0": [] + }, + "packageFolders": { + "C:\\Users\\jamil\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj", + "projectName": "Week 9", + "projectPath": "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj", + "packagesPath": "C:\\Users\\jamil\\.nuget\\packages\\", + "outputPath": "C:\\Users\\jamil\\source\\repos\\Week 9\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\jamil\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0-windows" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.0-windows", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0-windows7.0": { + "targetAlias": "net8.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\\8.0.303/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/obj/project.nuget.cache b/The Not So Fancy Calculator/obj/project.nuget.cache new file mode 100644 index 0000000..251a26c --- /dev/null +++ b/The Not So Fancy Calculator/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "y1Lrc4QmAzw=", + "success": true, + "projectFilePath": "C:\\Users\\jamil\\source\\repos\\Week 9\\Week 9.vbproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/The Not So Fancy Calculator/uncheck.wav b/The Not So Fancy Calculator/uncheck.wav new file mode 100644 index 0000000..04d2e00 Binary files /dev/null and b/The Not So Fancy Calculator/uncheck.wav differ