I have database using different framesets based off the number of servers we have (5). Is there a way to open up the database and open up a particular frameset based off the user’s mailbox location.
Thanks in advance,
John
I have database using different framesets based off the number of servers we have (5). Is there a way to open up the database and open up a particular frameset based off the user’s mailbox location.
Thanks in advance,
John
Subject: Opening a particular frameset
You could use a “master frameset” with a single frame and compute that frame’s content to one of your five server-specific framesets.
Subject: RE: Opening a particular frameset
Stan-
I am not sure how I can code in the frame properties how to determine which frameset to open. Could you provide any details about that?
Subject: RE: Opening a particular frameset
Okay. Set the frame content to Named Element, Frameset. That leaves the code for the frameset name. Click on the “@” to get the formula window. You can get the user’s mail server’s common name by using @Name([CN];@Subset(@MailDbName;1)), so something like this should do:
ms = @Name([CN];@Subset(@MailDbName;1));
@If(ms=“Server1”;“Frameset1”;ms=“Server2”;“Frameset2”;“DefaultFramesetName”)
You’ll have to expand the @If to include all of your scenarios.