Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2005.03.06;
Скачать: 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 вся ветка

Текущий архив: 2005.03.06;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.047 c
1-1107779131
Zhekson
2005-02-07 15:25
2005.03.06
аналоги Sleep_а


1-1108635679
Джинн
2005-02-17 13:21
2005.03.06
Отображение текста в TEdit со сдвигом


4-1106223181
Roman777
2005-01-20 15:13
2005.03.06
Альтернатива SetWindowPos?


3-1107796391
MakedoneZ
2005-02-07 20:13
2005.03.06
TDBGrid и Table


1-1108965730
Unknown
2005-02-21 09:02
2005.03.06
Возникло 3 вопроса: