
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2019 12:02 AM
I want to skip the first record and want to glide from second record to last record present in a table.
Currently i am trying to use getRowCount and chooseWindow but facing some difficulty.
Any help will be appreciated.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2019 12:05 AM
Hi
with only gr.next() after gr.query() will skip the first record.
after that you can do while(gr.next()).
Something like this -
gr.query();
gr.next();
while(gr.next())
{
}
Hope this helps.
Omkar Mone

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2019 12:05 AM
Hi
with only gr.next() after gr.query() will skip the first record.
after that you can do while(gr.next()).
Something like this -
gr.query();
gr.next();
while(gr.next())
{
}
Hope this helps.
Omkar Mone

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2019 05:18 AM
Thanks Omkar, It is working perfectly.