Вниз
Скачать: 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.022 c
1-1108986124
Object
2005-02-21 14:42
2005.03.06
Ошибка при удалении Panel с формы.


1-1109018851
Object
2005-02-21 23:47
2005.03.06
Создание функций Undo и Redo.


1-1108743051
creage
2005-02-18 19:10
2005.03.06
Вопрос по созданию прокси сервера


9-1102258178
lifo
2004-12-05 17:49
2005.03.06
grp формат


14-1108497769
тихий вовочка
2005-02-15 23:02
2005.03.06
Какой ПК брать




   Наверх