hi
i m making a window application in C# .net.
can anyone tell me how can i use search engine in window application?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
tanya jainPosted Aug 23, 2009, 8:00 AM
Now,on "search" button click I want the system to search that string which I have entered in textbox( on search form) by the text property of those 50 forms and display it on the search form in the panel below the serch textbox......
how can i do this
Kirtan PatelPosted Aug 22, 2009, 11:19 AM
you Need to Write your Own Class for handling Collection of Form to Perform Such a Taks there is no inbuit facility to perform such type of task .
However you can List the Forms Which are Currently open in the application
By
FormCollection fc = Application.OpenForms;
and Iterate through all the forms which are Currently Open
dont forget to mark "Do you like answer" if answer helped you :)
Thank you :)
Roei BarPosted Aug 22, 2009, 8:01 AM
each form will come to the catalog and search any term, whatever you put in the catalog and the user typed will be automatically fixed or given a substitute
:-)
Anurag GuptaPosted Aug 22, 2009, 5:17 AM
i want that if a user has entered any string in textbox ,it should match the complete string with the text property of the form only, not the text which is present on the form and not with the form name.
Also it should check for critical errors like More than one spacing .If there is more than one spacing then also it should automatically remove the extra spaces and display the corresponding form.
I want the search functionality like in windows
Kindly please help me regarding this........
Roei BarPosted Aug 22, 2009, 4:51 AM
if you need DB Search, use the Full Index Catalogs...