How does you get record no from 5 to 15 from a dataset of
100 records?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Difference between a sub and a function?
How many classes a dll can contain?
In vb.net how to connect crystal report?
What is code security?
Why do we use ansi keyword?
Define serialization in .net?
How to create a constant in vb.net?
difference between checkbox vs radiobutton??
Can you please explain the difference between dispose and finalize()?
how to deploy vb.net with key and evaluation time? any one can help me?
what is common language specification?
Allowed program to auto-correct the database when loading a presentation.
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)