How does you get record no from 5 to 15 from a dataset of
100 records?
Answer Posted / 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 |
Post New Answer View All Answers
What is internal keyword in .net framework?
What is portable executable?
Before in my vb app I would just load the icons from dll. How can I load the icons provided by .net dynamically?
What is global assembly cache (gac)?
What is late binding?
Explain the components of common language runtime.
How does vb.net achieve polymorphism?
Explain about garbage collection?
Explain jagged array in vb.net?
Explain how to store decimal data in .net?
What is a preprocessor directive in vb.net?
What are all the differences between dispose and finalize()?
What is the difference between convert.tostring and i.tostring method?
Tell me how many .net languages can a single .net dll contain?
Explain an assembly and its use?