Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is the diff between vb mdi form and .net mdi form?

0 Answers  


what is difference between web.config and machine.config and where it will be ?

0 Answers  


Explain the difference between value and reference types?

0 Answers  


Explain the observations between vb.net and vc#.net?

0 Answers  


hi dear ? MY problem is that i m developing software for Library. and i want to connect a third party software with my VB.net program in order to calculate DDC number.I dont know how to do this if any body can help me please?

1 Answers  


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

2 Answers  


Explain the difference between dispose and finalize()?

0 Answers  


What is the feature which is common to all .net languages?

0 Answers  


What are the features present in vb 2005?

0 Answers  


What are the differences between c# and visual basic.net?

0 Answers  


Explain the advantages of vb.net?

0 Answers  


Explain the use of new keyword?

0 Answers  


Categories