ryosal New member Jan 27, 2012 #1 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: Feb 23, 2014
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.
gdgsupport Support Staff member Feb 9, 2012 #2 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: Feb 23, 2014
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.
ryosal New member Feb 10, 2012 #3 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: Feb 23, 2014
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;