Delphi Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming Languages - MoreDelphi Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 14th, 2012, 10:36 AM
wildone wildone is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2012
Posts: 3 wildone User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 23 m 42 sec
Reputation Power: 0
TFindDialog

Hey people. I am new to this site and i subscribed just for help. My school teacher assigned me a project in which i need to develop a windows notepad like application. So everything went well and i didn't came across any difficulties apart from finding text in the memo lines using a TFindDialog. I have searched the Internet and found some code which i didn't understand very well. So i decided to write my own. The problem is that i don't know how to get the index of the last line of the memo. Here is my code(I don't know if it works i am just experimenting)

procedure TForm1.FindDialog1Find(Sender: TObject);
var
i : integer;
begin
for i := Memo1.CaretPos.Y to {Here i want to put the index of the last line} do
if pos(FindDialog1.FindText,Memo1.Lines[i]) <> 0 then
begin
Memo1.SelStart := pos(FindDialog1.FindText,Memo1.Lines[i]) - 1;
Memo1.SelLength := length(FindDialog1.FindText);
Memo1.SetFocus;
end;
end;



By the way i am relatively new to the delphi programming...
Sorry for my English!!!!

Reply With Quote
  #2  
Old April 15th, 2012, 12:55 AM
clivew clivew is offline
Contributing User
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Jan 2006
Location: Carlsbad, CA
Posts: 2,045 clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level)clivew User rank is Major (30000 - 40000 Reputation Level) 
Time spent in forums: 1 Week 6 Days 2 h 37 m
Reputation Power: 382
I am not commenting on the rest of your code; but the answer to your question is:
Code:
memo1.lines[memo1.lines.count-1]


Clive

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming Languages - MoreDelphi Programming > TFindDialog

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap