Esempio n. 1
0
        private void PictureBox2_Click(object sender, EventArgs e)
        {
            if (dgvTodo.CurrentRow.Selected == true)
            {
                editar editar = new editar("Panteones Mun.");
                editar.txt_oficio.Text = dgvTodo.CurrentRow.Cells[1].Value.ToString();
                editar.txt_nom.Text    = dgvTodo.CurrentRow.Cells[2].Value.ToString();
                editar.txt_tipo.Text   = dgvTodo.CurrentRow.Cells[3].Value.ToString();
                editar.txt_pase.Text   = dgvTodo.CurrentRow.Cells[4].Value.ToString();
                editar.txt_recibo.Text = dgvTodo.CurrentRow.Cells[5].Value.ToString();
                editar.dt_fecha.Value  = DateTime.Parse(dgvTodo.CurrentRow.Cells[6].Value.ToString());
                editar.txt_costo.Text  = dgvTodo.CurrentRow.Cells[7].Value.ToString();
                editar.Show();

                if (editar.txt_recibo.Text.Length != 0)
                {
                    editar.txt_costo.ReadOnly = true;
                    MessageBox.Show(" Este oficio ya fue registrado \n No podrá mdificar su costo", "Advertencia", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
            else
            {
                MessageBox.Show("Seleccione un registro para editar", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Esempio n. 2
0
        private void button4_Click(object sender, EventArgs e)
        {
            editar ed = new editar(myads);

            ed.ShowDialog();
            comboBox1.Items.Clear();
            List <string> adtitles = new List <string>();

            foreach (adsense a in myads)
            {
                adtitles.Add(a.website[0]);
            }
            comboBox1.Items.AddRange(adtitles.ToArray());
        }
        public void actualizarGrid(DataRowView row, editar editar)
        {
            try
            {
                row["nom_con"] = editar.TXnombre.Text;
                //ComboBoxAdv
                int    index     = editar.CB_clase.SelectedIndex;
                string nameclase = ((DataRowView)editar.CB_clase.Items[index])["nom_clase"].ToString().Trim();
                row["nom_clase"] = nameclase;
                row["nota"]      = editar.TX_nota.Text.Trim();

                dataGridCxC.View.Refresh();
            }
            catch (Exception w)
            {
                MessageBox.Show("error al actualizar:" + w);
            }
        }
        private void BTNeditar_Click(object sender, RoutedEventArgs e)
        {
            DataRowView row     = (DataRowView)dataGridCxC.SelectedItems[0];
            editar      ventana = new editar();

            ventana.id_con        = row["cod_niif"].ToString();
            ventana.nom_con       = row["nom_con"].ToString();
            ventana.añoNota       = CB_year.SelectedValue.ToString();
            ventana.TX_nota.Text  = row["nota"].ToString();
            ventana.ShowInTaskbar = false;
            ventana.Owner         = Application.Current.MainWindow;
            ventana.ShowDialog();

            if (ventana.actualizo == true)
            {
                actualizarGrid(row, ventana);
            }
        }
Esempio n. 5
0
 private void PictureBox2_Click(object sender, EventArgs e)
 {
     if (dgvTodo.CurrentRow.Selected == true)
     {
         editar editar = new editar("Obras Publicas");
         editar.txt_oficio.Text       = dgvTodo.CurrentRow.Cells[1].Value.ToString();
         editar.txt_nom.Text          = dgvTodo.CurrentRow.Cells[2].Value.ToString();
         editar.txt_tipo.SelectedItem = dgvTodo.CurrentRow.Cells[3].Value.ToString();
         editar.txt_pase.Text         = dgvTodo.CurrentRow.Cells[4].Value.ToString();
         editar.txt_recibo.Text       = dgvTodo.CurrentRow.Cells[5].Value.ToString();
         editar.dt_fecha.Value        = DateTime.Parse(dgvTodo.CurrentRow.Cells[0].Value.ToString());
         editar.txt_costo.Text        = dgvTodo.CurrentRow.Cells[6].Value.ToString();
         editar.Show();
     }
     else
     {
         MessageBox.Show("Seleccione un registro para editar", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }