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.");
        }
Esempio n. 2
0
 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");
 }
Esempio n. 3
0
		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.");
		}