// Answers the call. private void btnAnswerCall_Click(object sender, EventArgs e) { frmPhone frmPhone = new frmPhone(this.Top, this.Right, admin); frmPhone.StartPosition = FormStartPosition.Manual; frmPhone.Show(); }
// Answers the phone. private void button1_Click(object sender, EventArgs e) { callAnswerred = true; frmPhone frmPhone = new frmPhone(this.Top, this.Right, admin); frmPhone.StartPosition = FormStartPosition.Manual; frmPhone.Show(); }