Print Page | Close Window

IdeaBlade & Devexpress XtraReports

Printed From: IdeaBlade
Category: DevForce
Forum Name: DevForce Classic
Forum Discription: For .NET 2.0
URL: http://www.ideablade.com/forum/forum_posts.asp?TID=948
Printed Date: 13-Mar-2025 at 1:15am


Topic: IdeaBlade & Devexpress XtraReports
Posted By: John C
Subject: IdeaBlade & Devexpress XtraReports
Date Posted: 24-Sep-2008 at 3:55am
I am developing reports using DevExpress XtraReports from Objects created in the IdeaBlade Object Mapper.
 
I have been quite sucessful so far, but have hit problems with complicated detailed reports.
 
I'm looking for another developer that may also be integrating the two products.
 
I have read and followed IdeaBlade's documentation for integration, which works well.
 
I am now having problems filtering detail entities, can anyone help?
 



Replies:
Posted By: davidklitzke
Date Posted: 26-Sep-2008 at 11:02am
Can you be more detailed about your specific problems perhaps giving a few examples?


Posted By: John C
Date Posted: 29-Sep-2008 at 1:27am
Thanks for your reply.
 
At the time of my post I was unable to filter detail records in a report. I then discovered the GetCurrentRow method and I was able to start filtering (see below).

Dim aTransaction As GLTransaction

aTransaction = Me.DetailReport.GetCurrentRow()

If aTransaction.Year <> mYear Or (aTransaction.Period < mStartingPeriod Or aTransaction.Period > mEndingPeriod) Then

e.Cancel = True

End If

 



Print Page | Close Window