How does you get record no from 5 to 15 from a dataset of
100 records?

Answers were Sorted based on User's Feedback



How does you get record no from 5 to 15 from a dataset of 100 records?..

Answer / josh

dim dRow as data.datarow

for i as interger = 5 to 15
drow = dSet.Tables(0).Rows(i)
'process row
next i

Is This Answer Correct ?    2 Yes 0 No

How does you get record no from 5 to 15 from a dataset of 100 records?..

Answer / anusuya

For i as integer= 5 to 15 (Step 1)
msgbox ds.tables(0).rows(i)
Next i

Is This Answer Correct ?    1 Yes 0 No

How does you get record no from 5 to 15 from a dataset of 100 records?..

Answer / joseph amalraj

for (int i = 5; i <= 15; i++)
{
TextBox2.Text = TextBox2.Text + "' " +
ds1.Tables[0].Rows[i][0].ToString();
}

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More VB.NET Interview Questions

Can we use a crystal report into a another crystal report

7 Answers  


What is redim keyword?

0 Answers  


how to create crystal reports in asp.net & vb.net with syntax

2 Answers  


How do you validate Date by using which validation Control?

4 Answers   HCL, iQuest,


What are the different variables in vb.net?

0 Answers  






How to connect a service based database to vb.net forms? Do we have to create any specific database?

1 Answers  


What is difference between import system.data.sqlclient,system.data.oledb?

0 Answers  


Explain the difference between vb 6 and vb.net?

0 Answers  


So you know which dll is used for microsoft .net run time?

0 Answers  


Explain how to store decimal data in .net?

0 Answers  


Why do you need Lock in Visual Basic?

0 Answers   CGI,


what is vb.net?

10 Answers  


Categories