- Added tools to find Symbol Characters in Word Documents

- If the range does not have any characters return an empty string
Refresh Most Recent Items when the office button is pressed
Added OrdinalChanged Event
Used OrdinalChanged Event rather than MyContent.Changed Event when Ordinal is updated.
Use OrdinalChanged Event to update Tree Node
Refresh MRU list as items are added
Use OrdinalChanged Event to update Step Tab
- RTBFillIn changed to only update the RTB when the contents change
- AdjustSizeForContents changed to raise the HeightChanged event when the Height changes
Update the treeview tabs even if the step is not open.
This commit is contained in:
Rich
2010-12-01 20:03:06 +00:00
parent b3b3f5e518
commit bb3844538c
9 changed files with 174 additions and 30 deletions

View File

@@ -241,6 +241,7 @@ namespace VEPROMS
ctrlAnnotationDetails.SetupAnnotations(displaySearch1);
SetupButtons();
displayBookMarks.MyDisplayTabControl = tc; // allows bookmark selection to bring up steps/docs
office2007StartButton1.MouseDown +=new MouseEventHandler(office2007StartButton1_MouseDown);
}
void _MyMRIList_AfterRemove(object sender)
@@ -1402,6 +1403,11 @@ namespace VEPROMS
{
lblResolution.Text = string.Format("Resolution {0} x {1}", Size.Width, Size.Height);
}
private void office2007StartButton1_MouseDown(object sender, MouseEventArgs e)
{
// Refresh the MostRecentlyUsedList
_MyMRIList.Refresh();
SetupMRU();
}
}
}