Exemple #1
0
        private void seleccionar(int fila)
        {
            ISeleccionar Iform = this.Owner as ISeleccionar;

            if (Iform != null)
            {
                Iform.SeleccionarDato(dgvTipo.Rows[fila].Cells[2].Value.ToString());
            }
            this.Close();
        }
Exemple #2
0
        private void seleccionar(int fila)
        {
            ISeleccionar Iform = this.Owner as ISeleccionar;

            if (Iform != null)
            {
                Iform.SeleccionarDato(dgvCuentas.Rows[fila].Cells[0].Value.ToString());
            }
            this.Dispose();
        }
Exemple #3
0
        private void seleccionar(int fila)
        {
            // Se crea un  objeto interfaz para enviar el tercero seleccionado al formulario
            ISeleccionar Iform = this.Owner as ISeleccionar;

            if (Iform != null)
            {
                Iform.SeleccionarDato(dgvTerceros.Rows[fila].Cells[0].Value.ToString());
            }
            this.Dispose();
        }
Exemple #4
0
        private void seleccionar(int fila)
        {
            ISeleccionar Iform = this.Owner as ISeleccionar;

            if (Iform != null)
            {
                Iform.SeleccionarDato(dgvDocumentos.Rows[fila].Cells["dtTipo"].Value.ToString() + "-" +
                                      dgvDocumentos.Rows[fila].Cells["dtcodigo"].Value.ToString());
            }
            this.Dispose();
        }