private void btnInventoryMold_Click(object sender, EventArgs e)
 {
     InventoryMold im = new InventoryMold();
     im.DataXMLFilePath = DataXMLFilePath;
     im.FillIn += im_FillIn;
     im.ShowDialog();
 }
        private void btnInventoryMold1_Click(object sender, EventArgs e)
        {
            InventoryMold im = new InventoryMold();
            im.DataXMLFilePath = DataXMLFilePath;
            im.FillIn += im_FillIn;

            Button btn = sender as Button;
            ButtonName = btn.Name;
            im.ShowDialog();
        }
 private void btnInventoryMold_Click(object sender, EventArgs e)
 {
     InventoryMold IM = new InventoryMold();
     IM.DataXMLFilePath = DataXMLFilePathMold;
     IM.FillIn += IM_FillIn;
     IM.ShowDialog();
 }
示例#4
0
 private void button13_Click(object sender, EventArgs e)
 {
     InventoryMold IM = new InventoryMold();
     IM.DataXMLFilePath = DataXMLFilePathMold;
     IM.ShowDialog();
 }