Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Report Control
  New Posts New Posts RSS Feed - steping through rows by code
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

steping through rows by code

 Post Reply Post Reply
Author
Message
sfn555 View Drop Down
Newbie
Newbie


Joined: 08 March 2006
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote sfn555 Quote  Post ReplyReply Direct Link To This Post Topic: steping through rows by code
    Posted: 22 March 2006 at 3:45am
Hi,

using the arrowkeys I can move from row to row despite
the group-rows. I want to do the same by code and found
NextSiblingRow but this, correctly, stops on the last row
of a group. Is there another way to get always the next
row starting by the FocusedRow until the end of all rows?

Thanks!
Back to Top
sserge View Drop Down
Moderator Group
Moderator Group


Joined: 01 December 2004
Status: Offline
Points: 1297
Post Options Post Options   Thanks (0) Thanks(0)   Quote sserge Quote  Post ReplyReply Direct Link To This Post Posted: 22 March 2006 at 7:02am
See methods MoveUp, MovePageDown, MovePageUp, MoveFirst, MoveLast of the ReportControl.

Or class CXTPReportNavigator for version 10.0

--
WBR,
Serge
Back to Top
sfn555 View Drop Down
Newbie
Newbie


Joined: 08 March 2006
Status: Offline
Points: 4
Post Options Post Options   Thanks (0) Thanks(0)   Quote sfn555 Quote  Post ReplyReply Direct Link To This Post Posted: 23 March 2006 at 9:40am
I'm using Codejock.ReportControl.v9.80.ocx.
There are no such methods .


Back to Top
sserge View Drop Down
Moderator Group
Moderator Group


Joined: 01 December 2004
Status: Offline
Points: 1297
Post Options Post Options   Thanks (0) Thanks(0)   Quote sserge Quote  Post ReplyReply Direct Link To This Post Posted: 23 March 2006 at 10:06am
hmm... good occasion to upgrade?  

You can also try something like a following:

ReportControl.SetFocusedRow(
        ReportControl.Rows.GetNext(
            ReportControl.GetFocusedRow(),
            ReportControl.SkipGroupsFocus),
        bSelectBlock,
        bIgnoreSelection);

--
WBR,
Serge
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.125 seconds.