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

Which is the base class for all the classes in .net framework?

0 Answers  


Tell us how many languages are supported by .net?

0 Answers  


what are Fixed memory leaks and threads locking problems.

1 Answers  


What do you mean by option strict on?

0 Answers  


Explain the difference between vb.net and c#, related to oops concepts?

0 Answers  






What’s the difference between private and shared assembly?

0 Answers  


What is static member?

0 Answers  


Which namespace are used for accessing the data?

0 Answers  


how to call a list box on the text if some one send me the code for it

1 Answers  


Name the two main parts of .net?

0 Answers  


What is the advantages of VB.NET?

0 Answers   NA,


What are the different types of Lock available in Visual Basic?

0 Answers   CGI,


Categories