Filter Data

Mohamed

New member
Joined
Dec 5, 2006
Messages
3
Programming Experience
Beginner

Good Day for all
i would like to filter data that
get data from database
any one have ideas for filter data from textbox
call me




eng_msayedali@hotmail.com
Application Technical Support
Sokhna Port Development Company
 
Go through the following line of code

If you have Table A and you want to get the data

Dim strqry as string

strqry="select column1 from A where column1='" & textbox1.text & "'"

After this u can do whatever u want. Whether u want to display the results in the grid based on this query or populate values in the other control. Let me know exactly what u want? Can u post the code and let know where u r stuck?
 
Back
Top