private void CarregarComboPais() { try { BLL.PaisVinho paisVinho = new BLL.PaisVinho(); cboPaisVinho.DataSource = null; cboPaisVinho.DataSource = paisVinho.ListarPaises().Tables[0]; cboPaisVinho.ValueMember = "id_pais_vinho"; cboPaisVinho.DisplayMember = "nome_pais"; } catch (Exception) { MetroMessageBox.Show(cboPaisVinho, "Houveram erros na consulta dos paises.", "Winehunt", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1); } }
private void CarregarImagemPais(object o, EventArgs e) { try { BLL.PaisVinho paisVinho = new BLL.PaisVinho(); dr = paisVinho.ListarPais(Convert.ToInt32(cboPaisVinho.SelectedValue)); dr.Read(); WebRequest request; request = WebRequest.Create(dr["imagem_bandeira"].ToString()); using (var response = request.GetResponse()) { using (var str = response.GetResponseStream()) { pbImagemPais.SizeMode = PictureBoxSizeMode.Normal; pbImagemPais.Image = Image.FromStream(str); } } } catch (Exception) { txtLinkImagemVinho.Clear(); } }