Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.71K
~90 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for karan_21584

Try this.In my ex.both datasets contain one field each.For multiple fields you have to change code a bit. foreach (DataRow row in ds.Tables[0].Rows) { foreach (DataRow row1 in ds1.Tables[0].Rows) { if (row != row1) { if (ListBox1.Items.Count == 0) { ListBox1.Items.Add(new ListItem(row.ItemArray.GetValue(0).ToString())); } else { for (int i = 0; …

Member Avatar for nrar
0
90

The End.