Create a VISUAL BASIC application to assist a user with analyzing daily blood su
ID: 645718 • Letter: C
Question
Create a VISUAL BASIC application to assist a user with analyzing daily blood sugar readings.
Create an application with "input blood sugar readings" button that uses the input box method to let the user input how many readings from a blood sugar test are to be evaluated. The max is 30. There could be only 3 or 4 but no more than 30.Based on that number the app should allow the user to input there number of readings into an inputbox and then that should go into an array.Declare the array as a class level variable so that all methods for buttons have access to the values
"Display Values" - display the input values
"Display Average" - When the button is clicked, the program should display the average of the readings.
"Display Max" - When the button is clicked, the program should display the maximum reading and the day it occurred.
"Display Min" - When the button is clicked the program should display the minimum reading and the day it occurred.
Use constants as appropriate. Include comments with your name and a summary at the top and within each method as appropriate.
I dont even know where to start other than putting in variables and creating the array.