This is for Neha ONLY. If Neha cannot do it, I do not want to go forward. This lab creates the initial environment for the application you will build throughout this semester. For this lab, please...

1 answer below »


This is for Neha ONLY. If Neha cannot do it, I do not want to go forward.



This lab creates the initial environment for the application you will build throughout this semester.



For this lab, please follow the steps below:


1) Create a Windows Form Application. Use the name "CS314AppSln" for the solution name and "CS314AppPrj" for the project name.


2) Rename "Form1" to "LoginForm" and change the text at the top of the form to display "Login".


3) Create another form and name it "TestForm1". Change the text at the top of this form to display "Test Form #1".


4) Build your solution. Verify there are no errors.


5) Run the application. Verify"LoginForm" displays.


6) Modify the Program.cs file to run "TestForm1". Build your solution and verify there are no errors.


7) Run the application again. Verify "TestForm1" displays this time.


8) Close Visual Studio and navigate to the folder where you created the application in Step #1.


9) Delete everything in both the "bin" and "obj" folders.


10) Zip (Compress) the "CS314AppSln" folder of the application. Submit the zipped file as your submission for this lab in blackboard.

Answered Same DayApr 29, 2021

Answer To: This is for Neha ONLY. If Neha cannot do it, I do not want to go forward. This lab creates the...

Neha answered on May 03 2021
157 Votes
CS314AppSln/.vs/CS314AppSln/v15/.suo
CS314AppSln/.vs/CS314AppSln/v15/Server/sqlite3/db.lock
CS314AppSln/.vs/CS314AppSln/v15/Server/sqlite3/storage.ide
CS314AppSln/.vs/CS314AppSln/v15/Server/sqlite3/storage.ide-shm
CS314AppSln/.vs/CS314AppSln/v15/Server/sqlite3/storage.ide-wal
CS314AppSln/CS314AppSln.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.1062
MinimumVisualStudioVersion = 10.0.
40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CS314AppPrj", "CS314AppSln\CS314AppPrj.csproj", "{9AD1D667-AEAB-4A47-928D-5450032A137E}"
EndProject
Global
    GlobalSection(SolutionConfigurationPlatforms) = preSolution
        Debug|Any CPU = Debug|Any CPU
        Release|Any CPU = Release|Any CPU
    EndGlobalSection
    GlobalSection(ProjectConfigurationPlatforms) = postSolution
        {9AD1D667-AEAB-4A47-928D-5450032A137E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
        {9AD1D667-AEAB-4A47-928D-5450032A137E}.Debug|Any CPU.Build.0 = Debug|Any CPU
        {9AD1D667-AEAB-4A47-928D-5450032A137E}.Release|Any CPU.ActiveCfg = Release|Any CPU
        {9AD1D667-AEAB-4A47-928D-5450032A137E}.Release|Any CPU.Build.0 = Release|Any CPU
    EndGlobalSection
    GlobalSection(SolutionProperties) = preSolution
        HideSolutionNode = FALSE
    EndGlobalSection
    GlobalSection(ExtensibilityGlobals) = postSolution
        SolutionGuid = {1A6F6D19-C065-48AE-9D84-1DEADA3F232A}
    EndGlobalSection
EndGlobal
CS314AppSln/CS314AppSln/App.config




CS314AppSln/CS314AppSln/CS314AppPrj.csproj



Debug
AnyCPU
{9AD1D667-AEAB-4A47-928D-5450032A137E}
WinExe
CS314AppSln
CS314AppSln
v4.6.1
512
true
true


AnyCPU
true
full
false
bin\Debug\
DEBUG;TRACE
prompt
4


AnyCPU
pdbonly
true
bin\Release\
TRACE
prompt
4
















Form


LoginForm.cs




Form


TestForm1.cs


LoginForm.cs


ResXFileCodeGenerator
Resources.Designer.cs
Designer


True
Resources.resx


TestForm1.cs


SettingsSingleFileGenerator
Settings.Designer.cs


True
Settings.settings
True






CS314AppSln/CS314AppSln/LoginForm.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CS314AppSln
{
public partial class LoginForm : Form
{
public LoginForm()
{
InitializeComponent();
}
}
}
CS314AppSln/CS314AppSln/LoginForm.Designer.cs
namespace CS314AppSln
{
partial class LoginForm
{
///
/// 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.SuspendLayout();
//
// LoginForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Name = "LoginForm";
this.Text = "Login";
this.ResumeLayout(false);
}
#endregion
}
}
CS314AppSln/CS314AppSln/LoginForm.resx















...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here