Hello,
We try to update our software. Actually, we use VS2008 (Framework 3.5) and WinForm Infragistics 8.3. We want to update the version to VS2010 (Framework 4.0) and Winform Infragistics 11.1.
After the update, with some modifications, we launched the software, without problems.
After some tests, We saw that our UltraGrid have a lot of Bands. Into the version 8.3, we have only 1 band, with the version 11.1, we have sometimes 2/3/4... bands.
We saw that added bands, correspond to the different links in the database.
For exemple :
bindingSource1.DataSource = Globals.Contexte.REGION;
--> Where REGION is a table in the database.
--> REGION is link to REGION_CP (1 REGION must have many REGION_CP) and REGION_DEPARTEMENT (1 REGION must have many REGION_DEPARTEMENT)
--> In version 8.3, we have only 1 band. In, this band, we have columns REGION_CP and REGION_DEPARTEMENT
--> In version 11.1, we have 3 bands (REGION, REGION_CP and REGION_DEPARTEMENT)
Are there settings or other thing to use, to have the same result in version 8.3 and 11.1 ?
Thanks for your help !
I try to put this property, but it's the same problem. I have, again, many bands.
I try to put "Hidden" on band's property, without success.
Is it possible that the operation has changed between the two versions ?
I don't have columns named [REGION_CP] or [REGION_DEPARTEMENT] in my first (and only) band.
I have 3 bands (REGION, REGION_CP and REGION_DEPARTEMENT), and on the first band, I don't have columns ([REGION_CP] or [REGION_DEPARTEMENT])
Hello Vincent,
If I understand well your issue, maybe you could try to set property: ultraGrid1.DisplayLayout.MaxBandDepth = 1;
Let me know if you have any questions.
Regards