This commit is contained in:
Kathy Ruffing 2010-09-21 18:32:44 +00:00
parent 878eeb5013
commit 8c5aac4885

View File

@ -153,6 +153,16 @@ namespace VEPROMS
dlgFindReplace = new FindReplace();
SpellChecker = new VlnSpellCheck();
displaySearch1.PrintRequest += new DisplaySearchEvent(displaySearch1_PrintRequest);
this.Activated += new EventHandler(frmVEPROMS_Activated);
}
void frmVEPROMS_Activated(object sender, EventArgs e)
{
// refresh anything that pertains to external files or programs:
// if ro.fst was 'updated' from the roeditor, enable the update ro.fst values on
// the steptabribbon.
if (SelectedStepTabPanel!=null && SelectedStepTabPanel.MyStepTabRibbon != null)
SelectedStepTabPanel.MyStepTabRibbon.SetUpdRoValBtn(SelectedStepTabPanel.MyStepTabRibbon.NewerRoFst());
}
void displaySearch1_PrintRequest(object sender, DisplaySearchEventArgs args)
{