Lesley van Zijl - 2005-04-23

Logged In: YES
user_id=932282

I added the following in ReportNode.cs hope this fixes your
problem

/// <summary>
/// Uses MMCLib resources to see if there is a ResultItem
selected, if so it creates
/// it's propertypages It does nothing for scopenodes for
now. The doubleclick event
/// is only send by the mmc when something in the
resultview is double clicked when
/// a reportnode is doubleclicked anywhere you want it to
open and not show it's
/// propertypages.
/// </summary>
/// <returns></returns>
public override bool OnDblClick()
{
if(this.GetCurrentSelected().Length > 0)
{
CreatePropertyPagesForItems(null, IntPtr.Zero);
System.Diagnostics.Debug.WriteLine("Override
OnDblClick() in ReportNode while ResultItem selected");
}
else
{
System.Diagnostics.Debug.WriteLine("Override
OnDblClick() in ReportNode while ScopeNode selected");
}
return base.OnDblClick ();
}