Hi folks,
i'm using LLBLGEn Pro 2.0, and i'm build a WinForm .NET 2.0 application.
I have a DataGridView bound to a Collection, like that :
vjfCollectionAvecCogeneration = new VJFCollection();
PredicateExpression filtre = new PredicateExpression(VJFFields.IsCogeneration == true);
vjfCollectionAvecCogeneration.GetMulti(filtre);
gridAvecCogeneration.DataSource = vjfCollectionAvecCogeneration;
The point is that my column names are the property names of my collection. I would like to define custom column names. Do I have to that this way :
gridAvecCogeneration.Columns[0].Name = "PDC avec cogénération";
Or is there a proper way like using an EntityView?
Thanks,
Kal