private void lblAdvanced_Click(object sender, EventArgs e) { FormPatientSearch form = new FormPatientSearch(this); strQuery = "SELECT * FROM vwadminlogs WHERE `Last Name` LIKE '" + txtFilter.Text + "%' OR `Middle Name` LIKE '" + txtFilter.Text + "%' OR `First Name` LIKE '" + txtFilter.Text + "%' "; form.ShowDialog(); }
private void lblAdvanced_Click(object sender, EventArgs e) { FormPatientSearch form = new FormPatientSearch(this); form.ShowDialog(); }