private void Btn_consultar_Click(object sender, EventArgs e)
        {
            Frm_Consulta_Gastos gastos = new Frm_Consulta_Gastos();

            gastos.ShowDialog();

            if (gastos.DialogResult == DialogResult.OK)
            {
                txtCodigo.Text = gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                 Cells[0].Value.ToString();
                txtNombre.Text = gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                 Cells[1].Value.ToString();
                txtValor.Text = gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                Cells[2].Value.ToString();
            }
        }
        private void BtnBuscarGasto_Click(object sender, EventArgs e)
        {
            Frm_Consulta_Gastos gastos = new Frm_Consulta_Gastos();

            gastos.ShowDialog();

            if (gastos.DialogResult == DialogResult.OK)
            {
                txtCodGasto.Text = gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                   Cells[0].Value.ToString();

                Dgv_Gastos.Rows.Add(gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                    Cells[0].Value.ToString(), gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                    Cells[1].Value.ToString(), gastos.Dgv_consulta.Rows[gastos.Dgv_consulta.CurrentRow.Index].
                                    Cells[2].Value.ToString());
            }
        }