Show Find Dialog to use with IE publications (SOLVED)

Status
Not open for further replies.

ryosal

New member
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.
 
Last edited:
Yes, you can use the HEScript command called “ShowFindDialog”. For instance, insert this code in UserMain:
Example:
Code:
procedure OpenFindDialog;
begin
 ShowFindDialog;
end;
Then call UserMain.OpenFindDialog from a button for instance.
 
Last edited:
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;
 
Last edited:
Status
Not open for further replies.
Back
Top