CISY2320 Saint Mary’s Visual Basic Assignment

User Generated

f7220688

Programming

CISY2320

Saint Mary’s University

Description

This is an Visual Basic Assignment comprising only 2 questions. I would like you to accomplish this assignment within 10 hours. It shouldn't take a long time to do this. I prefer to offer a high price for this assignment. You just need to send me the cover page and the printouts of the source codes.

Unformatted Attachment Preview

CISY2320 Assignment 4 Due: April 3, 2019 Objective: This assignment is designed to learn programming in VB.NET. Important Note: This assignment is due at 11:00pm midnight on Wednesday April 3, 2019. The assignment drop box is located on the second floor in Loyola. Make sure that you submit your assignment to the correct assignment drop box. Question: 1. (5 marks) Create a VB.NET Windows Form Application that does the following: (1) Display two textboxes and a button. The user is expected to input a student’s A-number into the first textbox and input a name into the second textbox. (2) Display a message “XXXXXX’s student A-number is A########” below the button after the user inputs and clicks the button, where XXXXXX and A######## should be the input name and A-number respectively. Print your Form1.vb source code. Do NOT print/submit the user interface. 2. (5 marks) Create a VB.NET Windows Form Application that does the following: (1) Display an interface, which includes a textbox and a button, for the user to calculate the HST and total price of a textbook. The user is expected to input the price of a textbook into the textbox. (2) After the user inputs and clicks the button, A. Check if the user inputs a numeric value in the textbox using the IsNumeric function. B. Display a message “Please input the numeric price” below the button if the user’s input in the textbox is not a number. C. Display two messages below the button if otherwise. One message starts with “HST: ” followed by the value of the HST which is 15% of the user’s input in the textbox. The other message starts with “Total: ” followed by the total price which is the sum of the HST and the user’s input in the textbox. Print your Form1.vb source code. Do NOT print/submit the user interface. Submission: 1. A cover page that contains your name and student number. 2. The printouts of the source codes. 1
Purchase answer to see full attachment
User generated content is uploaded by users for the purposes of learning and should be used following Studypool's honor code & terms of service.

Explanation & Answer

Hey am through. Check out the correct answers in the attached word file. I used the latest version of Visual Studio

1

Name: Xinxin Jin

Student Number: A00370002

2

Question 1: Form1.vb
Public Class Form1
Private Sub buttonSubmit_Click(sender As System.Object, e As System.EventArgs)
Handles buttonSubmit.Click
'If textbox is empty alert/prompt user to enter Stud...

Related Tags