I am tryin to poplate an array with an unknown number of entries from input boxes. When i try Dim array() i get an warning about unassigned values. Is there anyway to do this? This is what i ahve so far
Code:Dim ipadd() As String Dim i As Integer = 0 For i = 0 To 1 ipadd(i) = InputBox("Ip address to connect to:") If ipadd(i) = "" Then Exit For Next




Reply With Quote