yes,I am going to show all records with the same criteria at the same time.
e.g.autoid id phone type
00001 001 12345678 Home
00002 001 87654321 Business
00003 001 78945612 Business (Fax)
and I have 3 set of textboxes,
txtphone1:txtphonetype1, txtphone2:txtphonetype2, txtphone3:txtphonetype3
If I write the code :
Txtphone1.DataBindings.Add("Text", ShowPhoneDS.Tables("phone"), "phone")
txtphonetype1.databindings.add("Text", ShowPhoneDS.Tables("phone"), "type")
What should I do if I want to show the rest of the records in textboxes 2 and 3 ?
Thank You.