private PopPoEntryForm popPoEntryForm;
private ReportDestinationForm reportDestinationForm;
public void Initialize()
{
popPoEntryForm = Microsoft.Dexterity.Applications.Dynamics.Forms.PopPoEntry;
popPoEntryWindow = popPoEntryForm.PopPoEntry;
popPoEntryWindow.ActivateBeforeOriginal +=new CancelEventHandler(popPoEntryWindow_ActivateBeforeOriginal);
}
void popPoEntryWindow_ActivateBeforeOriginal(object sender, CancelEventArgs e)
{
popPoEntryWindow.Hold.Value = true;
}
*This post is locked for comments