Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. while (reader.Read())
  2. {
  3.  
  4. txtArticulo.Text = reader.GetString("Articulo");
  5. txtArticulo.ForeColor = Color.Black;
  6. txaDescripcion.Text = reader.GetString("Descripcion");
  7. txaDescripcion.ForeColor = Color.Black;
  8. txtCosto.Text = reader.GetString("Costo");
  9. txtCosto.ForeColor = Color.Black;
  10. spImportancia.Value = Convert.ToDecimal(reader.GetString("Importancia"));
  11.  
  12. if (reader.GetString("Obligatorio") == "no")
  13. {
  14. rbNo.Checked = true;
  15.  
  16. }
  17. else if (reader.GetString("Obligatorio") == "si")
  18. {
  19.  
  20. rbSi.Checked = true;
  21.  
  22. }
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement