public static FrmVenta GetInscance() { if (_instancia == null) { _instancia = new FrmVenta(); } return(_instancia); }
private void DgvClientes_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { if (txtFlag.Text == "1") { FrmVenta frmVenta = FrmVenta.GetInscance(); if (dgvClientes.CurrentRow != null) { frmVenta.SetCliente(dgvClientes.CurrentRow.Cells[1].Value.ToString(), dgvClientes.CurrentRow.Cells[2].Value.ToString()); frmVenta.Show(); Close(); } } }