private void button2_Click(object sender, EventArgs e) { this.Close(); InventoryView newf = new InventoryView(); newf.Show(); }
private void button5_Click(object sender, EventArgs e) { InventoryView frm3 = new InventoryView(); frm3.Show(); //disable add new medicine button }
private void button2_Click(object sender, EventArgs e) { InventoryView frm1 = new InventoryView(); frm1.Show(); }
private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "" || textBox2.Text == "") { MessageBox.Show("Invalid! Please enter all the information to proceed."); } else { if (textBox3.Enabled == true && textBox3.Text == "") { MessageBox.Show("Invalid! Please enter all the information to proceed."); } else { double pv; if (textBox3.Enabled == true && !(Double.TryParse(textBox3.Text, System.Globalization.NumberStyles.Any, System.Globalization.CultureInfo.CurrentCulture, out pv))) { MessageBox.Show("Quantity has to be an integer only."); } else { DataSet ds = new DataSet(); ds = _sqlSetup.GetData("Select * from Medicine where Name like '" + textBox1.Text + "' and Type = (Select idType from Type " + "where Name like '" + comboBox1.Text + "')", false, null); if (ds != null) { if (ds.Tables[0].Rows.Count > 0) { MessageBox.Show("This medicine already exists."); } } else { if (textBox3.Text == "") { int insert = _sqlSetup.SetData("Set Identity_insert Medicine ON Insert into Medicine(idMedicine, Name, GenericChemName, Quantity, PcsPerPack, Type) values (((Select Top 1 idMedicine from Medicine order by idMedicine desc)+1), '" + textBox1.Text + "', '" + textBox2.Text + "' , 0 , 0 , (Select idType from Type where Name like '" + comboBox1.Text + "')) ", false, null); MessageBox.Show("Medicine Added."); this.Close(); InventoryView newfrm = new InventoryView(); newfrm.Show(); } else { int insert = _sqlSetup.SetData("Set Identity_insert Medicine ON Insert into Medicine(idMedicine, Name, GenericChemName, Quantity, PcsPerPack, Type) values (((Select Top 1 idMedicine from Medicine order by idMedicine desc)+1), '" + textBox1.Text + "', '" + textBox2.Text + "' , 0 , '" + textBox3.Text + "' , (Select idType from Type where Name like '" + comboBox1.Text + "')) ", false, null); MessageBox.Show("Medicine Added."); this.Close(); InventoryView newfrm = new InventoryView(); newfrm.Show(); } } } } } }