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 |
Hi I am planning to take interview in VB.net,can any one share your interview Questions for a Entry-level job. Regards Lina
What’s the difference between private and shared assembly?
Name the two main parts of .net?
What is visual basic.net culture?
Difference between VB dll and assemblies in .NET ?
Explain strong name in .net assembly?
Why is the xml infoset specification different from the xml dom?
Disadvantages of vb ?
12 Answers Digital GlobalSoft, TCS,
Explain cls?
What is non_deterministic finalization?
What is deep copy?
described weak typing?
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)