I need support with this Programming question so I can learn better.
Option #1: Visual Basic .NET Application – Coding Exercise 2 (Exercise 6, Zak, 2016, p. 575)
An application contains the Structure statement shown here.Create a VB.Net Windows Form application named MyFriend_YourName. Change the name property of your form to frmMain.
Add the MyFriend Structure to the public class frmMain.
Create 2 text boxes txtName and txtBirthday, and a button with the name property changed to btnExecute and the text property changed to Execute.
In the button click event, write a Dim statement that declares a five-element one-dimensional array of MyFriend variables. Name the array home.
Then write an assignment statement that assigns the value in the txtName control to the strName member contained in the last array element.
Write an assignment statement that assigns the value in the txtBirthday control to the strBirthday member contained in the last array element.