hi
I added PictureBox to the FlowLayoutPanel Each image takes a value from the datatable by tag = id column. What I want is to choose the image that has the number that I specify
my code Does not select any image
For Each item As Control In FlowLayoutPanel.Controls
If TypeOf item Is PictureBox Then
If item.Tag = "3" Then
item.BackgroundImage = Nothing
item.Select()
End If
End If
Next