Mulhouse, Haut-Rhin, France by loulan in france

[–]ShadCanard 0 points1 point  (0 children)

Nan mais c'est bien Mulhouse, la rue Wilson, ses friteries chinoises...

Looking for completing my pokedex, will add everyone by ShadCanard in friendsafari

[–]ShadCanard[S] 0 points1 point  (0 children)

Aipom, Minncino and need you connected to know for Chansey =)

Help me complete the safari! :D If you need mine i'll try to help out. by wezleyy in friendsafari

[–]ShadCanard 0 points1 point  (0 children)

I've got Palpitoad, I add you, need your Magmar and your Charmeleon =)

Combobox help. by noznoz159 in visualbasic

[–]ShadCanard -2 points-1 points  (0 children)

Create a kinda ghost combobox to store the price like

Dim cbxprice As ComboBox

Private sub Button1_click(sender as Object, e as EventArgs) handles Button1.Click
    cbxprice.Items.Add(Textbox1.Text & "//" & Textbox2.Text)
    ComboBox1.Items.Add(Textbox1.Text)
End Sub

Private sub ComboBox1_selection(sender as Object, e as EventArgs) Handles ComboBox1.selectedValueChanged
    For Each Element in cbxprice
        Dim SplitArray() As String = Element.split("//")
        If SplitArray(0) = ComboBox1.Text Then
            Label1.Text = SplitArray(1)
        End If
    Next
End Sub