Print Page | Close Window

[SOLVED] Grouping with invisible first column

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Report Control
Forum Description: Topics Related to Codejock Report Control
URL: http://forum.codejock.com/forum_posts.asp?TID=18791
Printed Date: 04 July 2025 at 12:41am
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: [SOLVED] Grouping with invisible first column
Posted By: Jebo
Subject: [SOLVED] Grouping with invisible first column
Date Posted: 05 August 2011 at 8:19am
Still it is not possible to Group Rows...

Use this sample-code:

Private Sub Form_Load()
With ReportControl1
    With .Columns
        .Add(0, "ID", 100, True).Visible = False
        .Add 1, "Text A", 200, True: .Add 2, "Text B", 120, True
        .Add 3, "Text C", 180, True: .Add 4, "Text D", 180, True
    End With
    Dim Record As ReportRecord, i As Long
    For i = 1 To 50
        Set Record = .Records.Add()
        Record.AddItem CStr(i)
        Record.AddItem "Textline - A" & CStr(i)
        Record.AddItem "Textline - B" & CStr(i)
        Record.AddItem "Textline - C" & CStr(i)
        Record.AddItem "Textline - D" & CStr(i)
    Next
    .HideColumnAfterGroupBoxDrop = False: .Populate
End With
End Sub


See the result:




I need a bugfix really urgent!



-------------
[Sig removed by Admin: Signature can't exceed 40GB]



Replies:
Posted By: ABuenger
Date Posted: 06 August 2011 at 4:07pm
Fixed for the next release.



Andre



-------------
Codejock support


Posted By: mgampi
Date Posted: 08 August 2011 at 7:26am
Hello Andre;

I'm encountering the same problem.
So I ask if it's possible to get the latest fix via support ticket?


-------------
Martin

Product: Xtreme Toolkit v 22.1.0, new Projects v 24.0.0
Platform: Windows 10 v 22H2 (64bit)
Language: VC++ 2022


Posted By: Jebo
Date Posted: 08 August 2011 at 7:30am
Yes please, me too! Smile

-------------
[Sig removed by Admin: Signature can't exceed 40GB]



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net