Question: can someone help me with writing this code in visual basic? This problem is about reading book information from a file into an array and

can someone help me with writing this code in visual basic?
This problem is about reading book information from a file into an array and searching for a book in the array. Provide the following data in the file called "books.txt". The needs to be stored at the bin\Debug ?-2 netx.0-windows directory of your project.The data structure you want to have is an array of structure. Declare it at the class level.
Structure Book Dim title As String Dim author As String Dim year As Integer End Structure
Dim books() As Book
The following shows the screen shot for the form:
Double click the title bar on the form to generate the Form Load event handler.Double click the button to generate the button click event handler.The output should be like the following
:Author: xxx
Title: xxx
Year: xxx
The following shows a sample output.
Show three more sample output for the following titles:
A Christmas carol
DaVinci Code
Visual Basic
can someone help me with writing this code in

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!