Added code to add figures and roimages to export and import processes

Revised user interface and added improvements to overall process
Added code to change Batch Refresh to Administrative Tools
This commit is contained in:
Rich
2015-02-18 02:35:11 +00:00
parent 24e3a9d7f5
commit f16fcf1470
5 changed files with 612 additions and 491 deletions

View File

@@ -881,7 +881,7 @@ namespace VEPROMS
btnResetSecurity.Click += new EventHandler(btnResetSecurity_Click);
//end added by jcb
//batch refresh transitions
btnBatchRefresh = new ButtonItem("btnBatchRefresh", "Batch Refresh");
btnBatchRefresh = new ButtonItem("btnBatchRefresh", "Administrative Tools");
btnBatchRefresh.Click += new EventHandler(btnBatchRefresh_Click);
btnAdmin.SubItems.Add(btnBatchRefresh);
//end batch refresh transitions
@@ -1039,7 +1039,7 @@ namespace VEPROMS
frmBatchRefresh frm = new frmBatchRefresh();
frm.ProgressBar = bottomProgBar;
frm.MySessionInfo = MySessionInfo;
frm.Show(this);
frm.ShowDialog(this);
}
void tmrCloseTabItems_Tick(object sender, EventArgs e)
@@ -1438,7 +1438,7 @@ namespace VEPROMS
}
private void SaveMRU()
{
Properties.Settings.Default.MRIList = _MyMRIList.ToSettings();
if(_MyMRIList != null) Properties.Settings.Default.MRIList = _MyMRIList.ToSettings();
Properties.Settings.Default.TreeviewExpanded = epProcedures.Expanded;
Properties.Settings.Default.Save();
}