Hey, am having 3 radio buttons and a button
The codes should be added to the button_click event, when ever the radio button is selected and the button is click then,
The codes should determine which button is selected and assign it to a variable. Create a two parallel 1-dim arrays and populate it with the data below:
Accommodation standard=(5 Star, 4 Star, Budget)
Cost=(200,100,60)
Dim AccStandard() As String = {"5 Star", "4 Star", "Budget"}
Dim cost() As Integer = {200, 100, 60}
The codes should be added to the button_click event, when ever the radio button is selected and the button is click then,
The codes should determine which button is selected and assign it to a variable. Create a two parallel 1-dim arrays and populate it with the data below:
Accommodation standard=(5 Star, 4 Star, Budget)
Cost=(200,100,60)
Dim AccStandard() As String = {"5 Star", "4 Star", "Budget"}
Dim cost() As Integer = {200, 100, 60}
Last edited: