I am having some trouble implementing a Row Layout for a Wingrid and I was hoping someone could help point out my error.
My Wingrid has one band and using the Column Arrangement Designer I have laid out my columns in the positions that I want them in and saved the changes.
When I run the application though the columns in the grid are all displayed in a single line (label01...column01...label02...column02...etc.) instead of appearing in the the form layout that I designed. What could I be doing wrong?
I am using Win.UltraWinGrid.v7.2.
Thanks!
Changing the databinding from:
Me.ugSegmentPartDeux.DataSource = clsGuardRail.GuardRailDataSet.Tables("SegmentPart")
To this:
Me.ugSegmentPartDeux.SetDataBinding(clsGuardRail.GuardRailDataSet, "SegmentPart")
Seems to have solved the problem. Thanks!
How are you applying your datasource? You should be using SetDataBinding with the appropriate parameters. Hope this helps if not will see where to go from here.