When i was working with OOPs in Vsual foxpro as long ago as 8 years!! We set uo our class libraries in a different way.
We sub Classed every Object and conrol - and then statred from there
If we take, for instance, the Entity Classes I think i would have had a parent class controlling them all.
When I had a method such as
public string DisplayName
{
get { return this.LastName + "' " + this.FirstName;}
}
I would have made it Protected Virtual in the parent Class
i would have then only have had to call it once
If had wanted to include the initials I would have overriden the Class
Obviously the code would be different in VRP but why woul I not do the same in a LLBLGEN project
Apart from the fact that there is no Parent Class for the Classes created by LLBLGEN
Richard