searching by first letter in textbox and displayed in datagridview

rockyy

Active member
Joined
Feb 3, 2010
Messages
25
Programming Experience
Beginner
help...
i want to search the bookname by the first name only
suppose i have 20 books and from 20 books there are 5 books whose intial letter starts from A so i want to display all those books which starts just from A and it should get displayed in datagrid view


The Bookname should be entered by a user in Bookname textbox as - S or A

2yor2j5.jpg
 
You can either create a DataView using a filter of "FieldName='A%'" or re-query the database and refill your dataset/datatable using a similar type where clause
 
Back
Top