private void butWebSchedSetup_Click(object sender, EventArgs e)
        {
            if (!Security.IsAuthorized(Permissions.Setup))
            {
                return;
            }
            FormRecallSetup FormRS = new FormRecallSetup();

            FormRS.ShowDialog();
            SecurityLogs.MakeLogEntry(Permissions.Setup, 0, "Recall Setup accessed via EServices Setup window.");
        }
Esempio n. 2
0
 private void menuItemRecall_Click(object sender, System.EventArgs e)
 {
     if(!Security.IsAuthorized(Permissions.Setup)){
         return;
     }
     FormRecallSetup FormRS=new FormRecallSetup();
     FormRS.ShowDialog();
     SecurityLogs.MakeLogEntry(Permissions.Setup,0,"Recall");
 }
Esempio n. 3
0
		private void butWebSchedSetup_Click(object sender,EventArgs e) {
			FormRecallSetup FormRS=new FormRecallSetup();
			FormRS.ShowDialog();
			SecurityLogs.MakeLogEntry(Permissions.EServicesSetup,0,"Recall Setup accessed via EServices Setup window.");
		}