How does you get record no from 5 to 15 from a dataset of
100 records?
Answer Posted / 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 View All Answers
Write the role of new keyword?
source code for how to login a vb.net application ?
Which namespace are used for accessing the data?
What is late binding?
What are the differences between c# and visual basic.net?
What is the feature anonymous type?
What are the different types of Lock available in Visual Basic?
What is early binding?
Explain an assembly and its use?
What is global assembly cache (gac)?
What is writeline in vb.net?
What is difference between import system.data.sqlclient,system.data.oledb?
What do you mean by serialization?
What are jagged arrarys ?
When do you use virutal keyword?