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 |
Explain trace in vb.net?
What is VB.Net?
Explain private assembly?
In vb.net how to connect crystal report?
What is the Difference between Web User Control and Web Custom Control?
what is delegates
What languages does the .net framework support?
What is the Advantage of vb.net over vb
What is the difference between import system.data.sqlclient and system.data.oledb?
What is the main purpose of garbage collector?
Explain an assembly?
What is the significance of delegates?
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)