I have a dataset which contains some products and their image filenames (for example "test.png"). Images are loaded as resources. How can I set the image location properly?
DataRowView uRow = (DataRowView)comboBox1.SelectedItem;
DataRow row = uRow.Row;
pictureBox1.ImageLocation = Properties.Resources + row["logo"].ToString();