I am having trouble showing tongits,black jack, 21 in a Listbox
I can only show favorite game, game in a Listbox
and also how can I count the number of question in questionnaires?
Json data
{
"id": 1,
"status": "DRAFT",
"title": "GAMES",
"author": "foo",
"questionnaires": [
{
"id": 1,
"question": "Favorite game",
"answers": [
"tongits",
"black jack",
"21"
]
},
{
"id": 2,
"question": "game",
"answers": [
"basketball",
"volleyball"
]
}
]
}
This is my code in VB
Dim o As JObject = JObject.Parse(json)
Dim results As List(Of JToken) = o.Children().ToList
For Each item As JProperty In results
item.CreateReader()
Select Case item.Name
Case "questionnaires"
Dim question As String
For Each subitem As JObject In item.Values
listbox1.item.add(question)
Next
End Select
Next
would gladly give thanks to whom will help
You have a typo "questionnaire" since this doesn't exist in your JSON ("questionnaires" does). Also you don't need to search for it. Below is Javascript pseudo code you can reference. Should be pretty similar to VB.Net.
Results: