i am using the express version of report sharpshooter. i can create simple reports with no parent/child relations by just dropping a BBS onto the form and setting it up. Tho i dont see a possibility to set up a parent-child relationship between two bbs objects in a way that report sharpshooter understands.
any ideas ?
thanks.
http://forum.strataframe.net/FindPost20704.aspx
You will basically create a new property in your parent BO that will represent your child BBS:
Private Shared _AreCustomDescriptorsEvaluated As Boolean = False
/// <summary> /// Determine if the custom descriptors are going to be evaluated /// </summary> /// <remarks></remarks> protected override bool AreCustomDescriptorsEvaluated { get { //-- Establish Locals bool r = _AreCustomDescriptorsEvaluated; //-- Do not eval the desciptors again _AreCustomDescriptorsEvaluated = true; //-- Return results return r; } }
Actually i allready have that:
namespace
{
#region
#endregion
_AreCustomDescriptorsEvaluated =
}
I'm facing some difficulties over here, since I don't speak neither German nor C#.
But I got to make your project work. Had to delete the instance of your RechungenBBS from the form, as there was some error there, I guess with namespaces or such. Also repaired some code and inheritance of BO, and it looks like working now: