New Posts New Posts RSS Feed: IdeaBlade & Devexpress XtraReports
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

IdeaBlade & Devexpress XtraReports

 Post Reply Post Reply
Author
John C View Drop Down
Newbie
Newbie


Joined: 24-Sep-2008
Location: Manchester UK
Posts: 4
Post Options Post Options   Quote John C Quote  Post ReplyReply Direct Link To This Post Topic: IdeaBlade & Devexpress XtraReports
    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?
 
Back to Top
davidklitzke View Drop Down
IdeaBlade
IdeaBlade
Avatar

Joined: 14-Jun-2007
Posts: 715
Post Options Post Options   Quote davidklitzke Quote  Post ReplyReply Direct Link To This Post Posted: 26-Sep-2008 at 11:02am
Can you be more detailed about your specific problems perhaps giving a few examples?
Back to Top
John C View Drop Down
Newbie
Newbie


Joined: 24-Sep-2008
Location: Manchester UK
Posts: 4
Post Options Post Options   Quote John C Quote  Post ReplyReply Direct Link To This Post 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

 
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down