private void caller1_TextChanged(object sender, EventArgs e) { if (caller1.Text != "Llamada Modem 1") { frmRegistrosLlamadas frmCall = new frmRegistrosLlamadas(); frmCall.Numero = caller1.Text; frmCall.Show(); caller1.Text = "Llamada Modem 1"; } }
private void dgvAsignaciones_CellClick(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex >= 0) { try { string id_asignaciones; id_asignaciones = dgvAsignaciones.Rows[e.RowIndex].Cells[0].Value.ToString(); frmRegistrosLlamadas frmCall = new frmRegistrosLlamadas(); frmCall.Id_asignaciones = Convert.ToInt32(id_asignaciones); frmCall.Show(); } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } }
private void btnCelular_Click(object sender, EventArgs e) { frmRegistrosLlamadas frmCall = new frmRegistrosLlamadas("vacio"); frmCall.Show(); }