Namespace Producto
Namespace Producto
{
public partial class frmProducto : Form
{
public frmProducto()
{
InitializeComponent();
}
void Mostrar()
{
string ubic;
ubic = "Data source= ; Initial Catalog=dbSanMartin; User Id=sa;
Password=123";
SqlConnection conex = new SqlConnection(ubic);
conex.Open();
string tabP;
tabP = "selec IdProducto as 'Codigo', Descripcion, Unidmed as 'Med',
PreVent as 'Precio Venta'";
DataTable dt = new DataTable();
SqlDataAdapter da = new SqlDataAdapter(tabP, conex);
da.Fill(dt);
dgvProducto.DataSource = dt;
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}