コード例 #1
0
        private void metroTile2_Click(object sender, EventArgs e)
        {
            RegistStd registStd = new RegistStd();

            registStd.ID                    = int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString());
            registStd.txtcode.Text          = this.metroGrid1.CurrentRow.Cells[1].Value.ToString();
            registStd.txtstdname.Text       = this.metroGrid1.CurrentRow.Cells[2].Value.ToString();
            registStd.cmbDept.Text          = this.metroGrid1.CurrentRow.Cells[3].Value.ToString();
            registStd.cmbLev.Text           = this.metroGrid1.CurrentRow.Cells[4].Value.ToString();
            registStd.StdType               = this.metroGrid1.CurrentRow.Cells[5].Value.ToString();
            registStd.txtNationId.Text      = this.metroGrid1.CurrentRow.Cells[6].Value.ToString();
            registStd.txtPlaceG.Text        = this.metroGrid1.CurrentRow.Cells[7].Value.ToString();
            registStd.txtPlaceC.Text        = this.metroGrid1.CurrentRow.Cells[8].Value.ToString();
            registStd.txtMob.Text           = this.metroGrid1.CurrentRow.Cells[9].Value.ToString();
            registStd.txtEmail.Text         = this.metroGrid1.CurrentRow.Cells[10].Value.ToString();
            registStd.txtQualif.Text        = this.metroGrid1.CurrentRow.Cells[11].Value.ToString();
            registStd.Stutus                = this.metroGrid1.CurrentRow.Cells[12].Value.ToString();
            registStd.txtyear.Text          = Std.GetYStudyStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtaddG.Text          = Std.GetAdGStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtaddC.Text          = Std.GetAdCStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.Relegion              = Std.GetReligionStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtAddress.Text       = Std.GetAdDetailStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtSchoolQulif.Text   = Std.GetGradPlaceStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtSchoolAdQulif.Text = Std.GetGradCStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtGname.Text         = Std.GetGuardianNameStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtRelation.Text      = Std.GetGuardianRelStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtJob.Text           = Std.GetGuardianJobStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtGNational.Text     = Std.GetGuardianNationIdStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtGAdd.Text          = Std.GetGuardianAdStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtGmob1.Text         = Std.GetGuardianPhone1Std(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.txtGmob2.Text         = Std.GetGuardianPhone2Std(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.KnowPlace             = Std.GetknownStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString()));
            registStd.Frm                   = "Update";
            registStd.txtNationId.ReadOnly  = true;
            registStd.dtjoin.Enabled        = false;
            registStd.dtBirth.Enabled       = false;
            registStd.dtQualif.Enabled      = false;

            registStd.Text = "      تعديل بيانات الطالب: " + this.metroGrid1.CurrentRow.Cells[1].Value.ToString();
            registStd.metroButton1.Text = "تأكيد التعديل";
            byte[]       img    = (byte[])Std.GetImgStd(int.Parse(this.metroGrid1.CurrentRow.Cells[0].Value.ToString())).Rows[0][0];
            MemoryStream memory = new MemoryStream(img);

            registStd.stdImg.Image = Image.FromStream(memory);
            registStd.ShowDialog();
            this.metroGrid1.DataSource = Std.GetAllStd();
        }
コード例 #2
0
        private void metroTile1_Click(object sender, EventArgs e)
        {
            RegistStd std = new RegistStd();

            std.ShowDialog(this);
        }
コード例 #3
0
ファイル: Main.cs プロジェクト: samardahy123/institute
        private void AddToolStripMenuItem_Click(object sender, EventArgs e)
        {
            RegistStd Rstd = new RegistStd();

            Rstd.ShowDialog();
        }