Exemplo n.º 1
0
 private void AddProduct_Click(object sender, EventArgs e)
 {
     ProductDetails ProductDetails = new ProductDetails();
     ProductDetails.Show();
     this.Hide();
     //need to find away to make the ID number become visible
 }
Exemplo n.º 2
0
 private void ProductInfo_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     ProductDetails ProductDetails = new ProductDetails();
     ProductDetails.Show();
     this.Hide();
 }