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

Глючит FindDialog   Найти похожие ветки 

 
Oyster ©   (2004-06-02 12:23) [0]

Вот пишу блокнот, там такой обработчик:

procedure TMainForm.ItemFindClick(Sender:TObject);
var s,MemoText:String;k,f:integer;
begin
  if FindDialog.Execute then
  begin
     if frMatchCase in FindDialog.Options then
     begin
        s:=FindDialog.FindText;
        MemoText:=TextArea.Text;
     end else
     begin
        s:=AnsiLowerCase(FindDialog.FindText);
        MemoText:=AnsiLowerCase(TextArea.Text);
     end;
     k:=TextArea.SelStart;
     Delete(MemoText,1,k);
     f:=Pos(s,MemoText);
     if f=0 then MessageBox(Application.Handle,
     PAnsiChar(s+" не найдено"),"Не найдено",
     MB_OK+MB_IconInformation) else
     begin
        TextArea.SelStart:=k+f-1;
        TextArea.SelLength:=Length(s);
        FindDialog.Execute;
     end;
  end;
end;

Так вот, когда выполняется первое Execute, прога не останавливается, а работает дальше, и выдает " не найдено.". А потом нажимаю "Найти далее", а оно не ищет. В чем проблема?


 
MetalFan ©   (2004-06-02 12:30) [1]


Occurs when the user clicks the Find Next button.

property OnFind: TNotifyEvent;

Description

Write an OnFind event handler to perform the requested search when the user clicks Find Next in the dialog. Use the Options flags to determine how the search is conducted.

доходит, что нужно делать?


 
Oyster ©   (2004-06-02 12:33) [2]

Спасибо, дошло :)



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

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



Память: 0.45 MB
Время: 0.045 c
1-1085646258
Lexandr
2004-05-27 12:24
2004.06.13
RTF и буфер обмена


1-1085826765
nikoss
2004-05-29 14:32
2004.06.13
Работа с объектом TImage


3-1085222354
Damager
2004-05-22 14:39
2004.06.13
Автоинкрементное поле


9-1068301760
Micah'GF
2003-11-08 17:29
2004.06.13
Загрузка MOD в BASS


4-1083910003
Dima__
2004-05-07 10:06
2004.06.13
потоки




   Наверх