Вниз
Скачать: 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.023 c
1-1108983469
siriusP
2005-02-21 13:57
2005.03.06
Ограничение числа строк в TDecisionCube


4-1106631182
SkierMax
2005-01-25 08:33
2005.03.06
Выключение компьютера под XP


14-1108709083
lehich
2005-02-18 09:44
2005.03.06
WordApplication.ActiveDocument.PrintOut


3-1107543041
Dyusha
2005-02-04 21:50
2005.03.06
Присвоение изображения ячейки в DBGrid


1-1109094700
mr-jack
2005-02-22 20:51
2005.03.06
перестановка StringGrid




   Наверх