Group Sub total not Visible in Print Preview |
Post Reply |
Author | |
SHAN
Groupie Joined: 17 July 2010 Location: Dubai Status: Offline Points: 73 |
Post Options
Thanks(0)
Posted: 19 July 2010 at 7:25am |
|
|
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional Language: Visual Basic 6.0 |
|
SHAN
Groupie Joined: 17 July 2010 Location: Dubai Status: Offline Points: 73 |
Post Options
Thanks(0)
|
This Print Preview problem only in Windows 7 But Printing Correctly.
Other Operationg System Displays in Print Preview and PrintingCorrectly
|
|
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional Language: Visual Basic 6.0 |
|
JamGodz
Groupie Joined: 25 February 2010 Status: Offline Points: 67 |
Post Options
Thanks(0)
|
hello any update with this i also encounter in PrintPreview example. My O.S is Win7
|
|
RJAMIN
Newbie Joined: 29 September 2010 Location: Houston, TX Status: Offline Points: 5 |
Post Options
Thanks(0)
|
Hi,
How does the group subtotal show properly on your control? When I tried to do the subtotal, unless the columns are at exact location with exact size, the subtotal will be in the wrong place (Not just alignment, but it can show up in a wrong column).
This is the code I use to generate the subtotal:
Private Sub wndReportControl_GroupOrderChangedEx(ByVal sender As Object, ByVal e As AxXtremeReportControl._DReportControlEvents_GroupOrderChangedExEvent) Handles wndReportControl.GroupOrderChangedEx
Dim row As Integer Dim groupRow As XtremeReportControl.ReportGroupRow If ((e.reason And XTPReportColumnOrderChangedReason.xtpReportColumnAddedToGroupby) = XTPReportColumnOrderChangedReason.xtpReportColumnAddedToGroupby) Or _
((e.reason And XTPReportColumnOrderChangedReason.xtpReportColumnRemovedFromGroupby) = XTPReportColumnOrderChangedReason.xtpReportColumnRemovedFromGroupby) Then For row = 0 To (wndReportControl.Rows.Count - 1) If (wndReportControl.Rows(row).GroupRow) Then groupRow = wndReportControl.Rows(row) groupRow.GroupFormula = "SUMSUB(C6:C7) SUMSUB(C8:C9)" groupRow.GroupFormat = "%0.2f" groupRow.GroupCaption = "" End If Next End If End Sub |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |