private void ButEClipboardAddSheets_Click(object sender, EventArgs e)
        {
            FormSheetDefs formSD = new FormSheetDefs(SheetTypeEnum.PatientForm, SheetTypeEnum.MedicalHistory, SheetTypeEnum.Consent);

            formSD.ShowDialog();
            FillGridEClipboardSheetInUse();
        }
Example #2
0
        private void menuItemSheets_Click(object sender, EventArgs e)
        {
            if (!Security.IsAuthorized(Permissions.Setup))
            {
                return;
            }
            FormSheetDefs FormSD = new FormSheetDefs();

            FormSD.ShowDialog();
            SecurityLogs.MakeLogEntry(Permissions.Setup, 0, "Sheets");
            FillGrid();
        }
Example #3
0
 private void menuItemSheets_Click(object sender,EventArgs e)
 {
     if(!Security.IsAuthorized(Permissions.Setup)) {
         return;
     }
     FormSheetDefs FormSD=new FormSheetDefs();
     FormSD.ShowDialog();
     SecurityLogs.MakeLogEntry(Permissions.Setup,0,"Sheets");
 }