search engine for delphi 7

Please support our Pascal and Delphi advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved

Join Date: Oct 2009
Posts: 11
Reputation: Vdub.za is an unknown quantity at this point 
Solved Threads: 0
Vdub.za Vdub.za is offline Offline
Newbie Poster

search engine for delphi 7

 
0
  #1
Oct 13th, 2009
Hi guys,

I am still a bit new to delphi and was wondering if someone can help me. I need to figure out how to write a search engine into an app i am writing in delphi. any help on how i may be able to do this would be greatly appreciated.

Thank You,
Vdub.za
Reply With Quote Quick reply to this message  
Join Date: Feb 2009
Posts: 449
Reputation: FlamingClaw will become famous soon enough FlamingClaw will become famous soon enough 
Solved Threads: 107
FlamingClaw's Avatar
FlamingClaw FlamingClaw is online now Online
Posting Pro in Training
 
0
  #2
Oct 13th, 2009
what do you want to search?Any effort?
Last edited by FlamingClaw; Oct 13th, 2009 at 1:05 pm.
Be a good part of the community.Don't be ungrateful.
If you ask something on the forum and you got the right answer then mark as solved!
If my opinion helped to you a lot then sometimes give reputation point to me.
I'm just a pascal programmer from Hungary.
Farewell...
Reply With Quote Quick reply to this message  
Join Date: Feb 2009
Posts: 449
Reputation: FlamingClaw will become famous soon enough FlamingClaw will become famous soon enough 
Solved Threads: 107
FlamingClaw's Avatar
FlamingClaw FlamingClaw is online now Online
Posting Pro in Training
 
0
  #3
Oct 13th, 2009
1, create a new form as form1
2, find the DIALOGS\OPENDIALOG place it to this form1
3, click on the opendialog1 to look at its properties in the Object Inspector...set the
3.a, FILTER to acceptable filefilter (example: pascal | *.pas)
3.b, DEFAULTEXT to *.pas
3.c, TITLE to search for pascal file (*.pas)
4, place an edit box as edit1
5, place a button to the form1 too ,as button1,and code it.
set the button1's caption to search or browse,and double click it to write some code..
  1. procedure TForm1.Button1Click(Sender: TObject);
  2. begin
  3. if opendialog1.Execute then begin
  4. edit1.Text:= opendialog1.filename;
  5. end;
  6. end;
when the file opened the file's path and name is entered to the edit1
Be a good part of the community.Don't be ungrateful.
If you ask something on the forum and you got the right answer then mark as solved!
If my opinion helped to you a lot then sometimes give reputation point to me.
I'm just a pascal programmer from Hungary.
Farewell...
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 11
Reputation: Vdub.za is an unknown quantity at this point 
Solved Threads: 0
Vdub.za Vdub.za is offline Offline
Newbie Poster
 
0
  #4
Oct 14th, 2009
Thank you for your help. I'll do that and give you some feedback.


Thanks Again,
Vdub.za
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 11
Reputation: Vdub.za is an unknown quantity at this point 
Solved Threads: 0
Vdub.za Vdub.za is offline Offline
Newbie Poster
 
0
  #5
Oct 15th, 2009
Hey,

I did what you suggested. I was not clear enough in my question. sorry about that.how do i make a dblookupcombobox filter as i type in relevant data? like a internet search engine that completes the word that you are typing when it searches the database and/or gives you a dropdown list with alternate options that you can select.

Thanx again.
Reply With Quote Quick reply to this message  
Join Date: Oct 2009
Posts: 11
Reputation: Vdub.za is an unknown quantity at this point 
Solved Threads: 0
Vdub.za Vdub.za is offline Offline
Newbie Poster
 
0
  #6
Oct 16th, 2009
Hello,

We finally figured out how to create a type of search engine. thanx for all your help.
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC