Show Find Dialog to use with IE publications (SOLVED)

Hi there …

I need to make a button in my toolbar that call a procedure to display the Find Text dialog (search in the current HTML page only).- Is it possible to use with IE publication? Thanks.

Thank you very much. It´s works. Without parameters I get a error in script; so I add a “1” as parameter and all is okay. I wrote:

procedure OpenFindDialog;
begin
ShowFindDialog(1);
end;

Yes, you can use the HEScript command called “ShowFindDialog”. For instance, insert this code in UserMain:
Example:

procedure OpenFindDialog;
begin
 ShowFindDialog;
end;  

Then call UserMain.OpenFindDialog from a button for instance.

This topic was automatically closed after 24 hours. New replies are no longer allowed.