Ejemplo n.º 1
0
 public frmSearchProductStonkin(frmStockIn fList)
 {
     InitializeComponent();
     connString = new SqlConnection(dbcon.MyConnection());
     loadProduct();
     sList = fList;
 }
Ejemplo n.º 2
0
        private void btnStockIn_Click(object sender, EventArgs e)
        {
            frmStockIn frm = new frmStockIn();

            //frm.TopLevel = false;
            frm.BringToFront();
            //frm.Show();
            //frm.loadProduct();
            frm.ShowDialog();
        }