Firefox_mig
Firefox_mig

Reputation: 9

Creating items with listpicker

I have a problem with this. I'm creating a unit converter. I've created 3 listpicker:

1st Type of measure
2nd From
3rd To

It's add the items but for example if I want select "weight" i want that it shows "Kilograms" and "Pounds"

I show you the code:

    convtypelp.Items.Add("Weight")
    convtypelp.Items.Add("Speed")

    If convtypelp.SelectedItem = "Weight" Then
        convfromlp.Items.Add("Kilograms")
        convfromlp.Items.Add("Pounds")
        convtolp.Items.Add("Kilograms")
        convtolp.Items.Add("Pounds")

    ElseIf convtypelp.SelectedItem = "Speed" Then
        convfromlp.Items.Add("Knots")
        convfromlp.Items.Add("KPH")
        convfromlp.Items.Add("MPH")
        convtolp.Items.Add("Knots")
        convtolp.Items.Add("KPH")
        convtolp.Items.Add("MPH")
    End If

When I execute the app to test appears the following error:

Requested operation is not available because the runtime library function Microsoft.VisualBasic.CompilerServices.Operators.ConditionalCompareObjectEqual

Upvotes: 0

Views: 65

Answers (0)

Related Questions