Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Report Control
  New Posts New Posts RSS Feed - [SOLVED] Grouping with invisible first column
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

[SOLVED] Grouping with invisible first column

 Post Reply Post Reply
Author
Message
Jebo View Drop Down
Senior Member
Senior Member


Joined: 27 October 2005
Location: Germany
Status: Offline
Points: 318
Post Options Post Options   Thanks (0) Thanks(0)   Quote Jebo Quote  Post ReplyReply Direct Link To This Post Topic: [SOLVED] Grouping with invisible first column
    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]
Back to Top
ABuenger View Drop Down
Newbie
Newbie
Avatar

Joined: 02 February 2006
Status: Offline
Points: 1075
Post Options Post Options   Thanks (0) Thanks(0)   Quote ABuenger Quote  Post ReplyReply Direct Link To This Post Posted: 06 August 2011 at 4:07pm
Fixed for the next release.



Andre

Codejock support
Back to Top
mgampi View Drop Down
Senior Member
Senior Member
Avatar

Joined: 14 July 2003
Status: Offline
Points: 1198
Post Options Post Options   Thanks (0) Thanks(0)   Quote mgampi Quote  Post ReplyReply Direct Link To This Post 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 19.0.0, new Projects v 19.1.0
Platform: Windows 10 v 1909 (64bit)
Language: VC++ 2017
Back to Top
Jebo View Drop Down
Senior Member
Senior Member


Joined: 27 October 2005
Location: Germany
Status: Offline
Points: 318
Post Options Post Options   Thanks (0) Thanks(0)   Quote Jebo Quote  Post ReplyReply Direct Link To This Post Posted: 08 August 2011 at 7:30am
Yes please, me too! Smile
[Sig removed by Admin: Signature can't exceed 40GB]
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.172 seconds.