private void کتابToolStripMenuItem_Click(object sender, EventArgs e) { UIL.book_Main f = new UIL.book_Main(); f.MdiParent = this; f.Show(); }
private void button1_Click(object sender, EventArgs e) { if (txtid.Text == "") { MessageBox.Show("لطفا شماره را وارد نماييد"); txtid.Focus(); return; } if (txttitle.Text == "") { MessageBox.Show("لطفا عنوان را وارد نماييد"); txttitle.Focus(); return; } if (txtname_writer.Text == "") { MessageBox.Show("لطفا نام نویسنده را وارد نماييد"); txtname_writer.Focus(); return; } if (txtname_adverties.Text == "") { // MessageBox.Show("لطفا نام انتشارات را وارد نماييد"); txtname_adverties.Text = " "; //return; } if (txtplace.Text == "") { //MessageBox.Show("لطفا محل نگهداری را وارد نماييد"); txtplace.Text = " "; // return; } if (txtdescribe.Text == "") { //MessageBox.Show("لطفا سایر توضیحات را وارد نماييد"); txtdescribe.Text = " "; //return; } bookclass bc = new bookclass(); DataTable dt = new DataTable(); if (mode == type_mode.mode.edit) { bc.Edit(txttitle.Text, txtname_writer.Text, txtname_adverties.Text, txtplace.Text, txtdescribe.Text, txtid.Text); MessageBox.Show("!ویرایش انجام شد "); this.Close(); } else if (mode == type_mode.mode.insert) { dt = bc.Search(txtid.Text); if (dt.Rows.Count == 0) { bc.Add(txtid.Text, txttitle.Text, txtname_writer.Text, txtname_adverties.Text, txtplace.Text, txtdescribe.Text, false); DialogResult dr; dr = MessageBox.Show("!داده ها ثبت شد", "ثبت", MessageBoxButtons.OK); if (dr == DialogResult.OK) { book_Main f = new book_Main(); f.Main_book_Load(null, null); txtid.Text = ""; txttitle.Text = ""; txtname_writer.Text = ""; txtname_adverties.Text = ""; txtplace.Text = ""; txtdescribe.Text = ""; } } else { MessageBox.Show("! قبلا مشخصاتی با این شماره ، ثبت شده است", " تذکر :فیلد شماره تکراری است"); // txtid.Text = ""; txtid.Focus(); } } }