I can open the search panel by using code: hescript://Macros.MacroSearch
- Does anyone know how to close the search panel by using code?
- Or how to add the “close” button inside of the search panel?
I can open the search panel by using code: hescript://Macros.MacroSearch
I add one new procedure:
procedure MacroCloseSearch;
begin
ShowLeftPanel(1, false);
end;
then I can use it to close the search panel.