lstRGB.Items.Add(CStr(pixelColor.R) + " " + CStr(pixelColor.G) + " " + CStr(pixelColor.B))
As you can see I have added 3 separate values in the listbox.
Dim MyString As String
MyString = lstRGB.SelectedItem
lets say MyString is like "60 255 132" how do I split it in three parts ? one of them would be 60 second 255 and third 132... can you do it with split or substring ? it is 4am I cant think HELP!
As you can see I have added 3 separate values in the listbox.
Dim MyString As String
MyString = lstRGB.SelectedItem
lets say MyString is like "60 255 132" how do I split it in three parts ? one of them would be 60 second 255 and third 132... can you do it with split or substring ? it is 4am I cant think HELP!