Вниз
Скачать: CL | DM;

Поиск текста   Найти похожие ветки 

← →
Sonic_gd   (2005-02-21 11:11) [0]

Я ищу текст в TRichEdit данным способом:
procedure TMain.N38Click(Sender: TObject);
begin
with Find do begin
Options:=Options+[frHideMatchCase]+[frHideWholeWord]+[frHideUpDown];
Execute;
end;
end;

procedure TMain.FindFind(Sender: TObject);
var
FoundAt: LongInt;
StartPos, ToEnd: Integer;
begin
with text do  begin
{ begin the search after the current selection if there is one }
{ otherwise, begin at the start of the text }
if SelLength <> 0 then
StartPos := SelStart + SelLength
else
StartPos := 0;
{ ToEnd is the length from StartPos to the end of the text in the rich edit control }
ToEnd := Length(Text) - StartPos;
FoundAt := FindText(Find.FindText, StartPos, ToEnd, [stMatchCase]);
if FoundAt <> -1 then
begin
SetFocus;
SelStart := FoundAt;
SelLength := Length(Find.FindText);
end;
end;
end;

Но еслиискомый текст находится ниже видимой части текста, то текст не проручивается до нужной позиции. Как это сделать?


← →
Sonic_gd   (2005-02-21 17:06) [1]

Если можно, то побыстрее. Это очень срочно.


← →
Sonic_gd   (2005-02-21 17:38) [2]

Всё, уже сам разобрался.



Страницы: 1 вся ветка

Скачать: CL | DM;



Память: 0.45 MB
Время: 0.024 c
14-1108117607
lifo
2005-02-11 13:26
2005.03.06
Быстро добавить закладочки


10-1085145715
Homyak_Max
2004-05-21 17:21
2005.03.06
Проверка соединения с клиентом


1-1108777684
XfroSt
2005-02-19 04:48
2005.03.06
Определение количества записей в файле


6-1103815645
VadimEagle
2004-12-23 18:27
2005.03.06
Скачать файл


1-1109008417
ТехникПТО
2005-02-21 20:53
2005.03.06
Real в String




   Наверх