Is there a way to hide the database ico?I don’t want to display the database ico on the client workspace. How could I do?
Subject: Well, no…
… but why?
Subject: replace icon
I have an old routine that we used to replace one icon with another. It is a formula we sent under a button in an email.
But perhaps it will get you started. maybe you could put something LIKE this in the database’s script, Sub Terminate, to remove the db icon when the users exists the db? Not sure if it would work or not.
@Prompt([Ok]; “Attention …”; “You will now be prompted to remove an obsolete icon from your workspace. Please choose YES when prompted.”);
REM {Go to workspace};
@PostedCommand([WindowWorkspace]);
REM {Select the database};
@PostedCommand([AddDatabase]; “old/OU” : “olddb.nsf” );
REM { Remove the icon};
@PostedCommand([EditClear]);
REM {Add new database};
@PostedCommand([AddDatabase]; “new/OU” : “newdb.nsf” );
REM {Sending confirmation message};
@MailSend( “admin/OU” ; “”:“” ; “migration confirmation” ; “” ; “I migrated” ;[PriorityNormal])