Answered You can hire a professional tutor to get the answer.
Module mainModule Sub Main() Const intMAX As Integer = 6 Dim strPeople(intMAX) As String strPeople(0) = "Kamryn Jones" strPeople(1) = "Connie Petree"...
Module mainModule
Sub Main()
Const intMAX As Integer = 6
Dim strPeople(intMAX) As String
strPeople(0) = "Kamryn Jones"
strPeople(1) = "Connie Petree"
strPeople(2) = "Katherine Taylor"
strPeople(3) = "Gigi Landers"
strPeople(4) = "Mitchell Mays"
strPeople(5) = "Regan Wilson"
strPeople(6) = "Olivia Tutera"
End Sub
End Module
How would I use the strPeople array above to load a combo box with names using a for loop instead of cboNames.Items.Add("Kamryn Jones")?