private void gridWebSchedRecallTypes_DoubleClick(object sender, EventArgs e) { if (!Security.IsAuthorized(Permissions.Setup)) { return; } FormRecallTypes FormRT = new FormRecallTypes(); FormRT.ShowDialog(); FillGridWebSchedRecallTypes(); FillGridWebSchedTimeSlotsThreaded(); SecurityLogs.MakeLogEntry(Permissions.Setup, 0, "Recall Types accessed via EServices Setup window."); }
private void menuItemRecallTypes_Click(object sender,EventArgs e) { if(!Security.IsAuthorized(Permissions.Setup)){ return; } FormRecallTypes FormRT=new FormRecallTypes(); FormRT.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Setup,0,"Recall Types"); }
private void butRecallTypes_Click(object sender,EventArgs e) { FormRecallTypes FormRT=new FormRecallTypes(); FormRT.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.EServicesSetup,0,"Recall Types accessed via EServices Setup window."); }