private void comboBoxProductos_SelectedValueChanged(object sender, EventArgs e)
 {
     if (this.comboBoxProductos.SelectedValue.ToString() != "System.Data.DataRowView")
     {
         this.textBoxPrecio.Text = (NProductos.PrecioProducto(Convert.ToInt32(this.comboBoxProductos.SelectedValue.ToString()))).ToString("0.00##");
     }
 }
 private void comboBoxProductos_SelectedValueChanged(object sender, EventArgs e)
 {
     try
     {
         if (this.comboBoxProductos.SelectedIndex != -1)
         {
             if (this.comboBoxProductos.SelectedValue.ToString() != "System.Data.DataRowView")
             {
                 this.textBoxPrecio.Text = (NProductos.PrecioProducto(Convert.ToInt32(this.comboBoxProductos.SelectedValue.ToString()))).ToString("0.00##");
             }
         }
     }
     catch (Exception ex)
     {
         MensajeError(ex.Message);
     }
 }