Jump to content

Platform Specific Layout


Ballycroy

This topic is 6119 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I wonder if this is possible:

I have a image db solution that is used on Mac and PC.

Management want users to login automatically.

Is it possible to send the user to a Mac or PC specific layout based on the system platform. Or hide layouts based on which platform the db is on.

I know how to do this with specific accounts and have the user login.

Link to comment
Share on other sites

That should really be either:

Go To Layout[ By calculation ... ]

Where the calc is:

Case(

Abs(Get(SystemPlatform)) = 1;

"MacLayout" ;

"WinLayout"

)

Or alternatively:

If[Abs(Get(SystemPlatform)) = 1]

Go To Layout[MacLayout]

Else

Go To Layout[WinLayout]

End If

Link to comment
Share on other sites

This topic is 6119 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.