Hey, am having 3 radiobuttons, so if any of them is checked, then the price should be display on a label, but it has to be using array. I have started, but i got hooked at this point.
Dim AccStandard() As String = {"5 Star", "4 Star", "Budget"}
Dim cost() As Integer = {200, 100, 60}
Dim index As Integer
For index = 0 To AccStandard.Length - 1
If Accomodation = AccStandard(index) Then
ResultLabe.text = cost(index)
End If
Next