If you want to remove the "Printer icon" for all modules, you can go to the settings of all modules and change that in the Page settings.
But there is a way to do that by SQL:
- Log in as Host
- Go to menu item Host -> SQL
- Execute the following SQL statement (after ticking Run as script)
UPDATE {databaseOwner}{objectQualifier}TabModules
SET DisplayPrint = 'False'
WHERE {databaseOwner}{objectQualifier}TabModules.IconFile IS NULL
AND {databaseOwner}{objectQualifier}TabModules.DisplayPrint!= 'False'
Please note that this statement will remove
all printer icons from
all modules.