I want to glide record from second row to last row, how can i achieve this.

Ajay Sharma2
Tera Guru

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.

1 ACCEPTED SOLUTION

Omkar Mone
Mega Sage

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

 

 

 

View solution in original post

2 REPLIES 2

Omkar Mone
Mega Sage

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

 

 

 

Thanks Omkar, It is working perfectly.