Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Create A Project...Array of a structure. Create a project that will allow a user

ID: 3632045 • Letter: C

Question

Create A Project...Array of a structure. Create a project that will allow a user to look up state and territory names and their two-letter abreviations. The user will have the options to Look up the Abbreviation or Look up the State Name. In the event that a match cannot be found for the input, display an appropriate error message. User Radio Buttons with a shared event procedure and a Select Case to determine which text box (State name or abbreviation) should have the focus and which should be set to Readonly.

Explanation / Answer

This is how you will code an array of structures :) You can use an array if lists. Dim newstruct As New List (Of String) newstruct.Add("Word 1") Dim Word1 As String = newstruct(0) Cheers! Please rate :)